Modify authz pom files.
[aaf/authz.git] / cadi / client / pom.xml
1 <!--
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20 -->
21 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22 <parent>
23         <groupId>org.onap.aaf.cadi</groupId>
24         <artifactId>parent</artifactId>
25         <version>1.5.0-SNAPSHOT</version>
26         <relativePath>..</relativePath>
27 </parent>
28
29         <artifactId>aaf-cadi-client</artifactId>
30         <name>AAF CADI Client</name>
31         <packaging>jar</packaging>
32         <modelVersion>4.0.0</modelVersion>
33
34         <developers>
35                 <developer>
36                         <name>Jonathan Gathman</name>
37                         <email>jonathan.gathman@att.com</email>
38                         <organization>ATT</organization>
39                         <roles>
40                                 <role>Architect</role>
41                                 <role>Lead Developer</role>
42                         </roles>
43                 </developer>
44                 <developer>
45                         <name>Gabe Maurer</name>
46                         <email>gabe.maurer@att.com</email>
47                         <organization>ATT</organization>
48                         <roles>
49                                 <role>Developer</role>
50                         </roles>
51                 </developer>
52                 <developer>
53                         <name>Ian Howell</name>
54                         <email>ian.howell@att.com</email>
55                         <organization>ATT</organization>
56                         <roles>
57                                 <role>Developer</role>
58                         </roles>
59                 </developer>
60                 <developer>
61                         <name>Sai Gandham</name>
62                         <email>sai.gandham@att.com</email>
63                         <organization>ATT</organization>
64                         <roles>
65                                 <role>Developer</role>
66                         </roles>
67                 </developer>
68         </developers>
69
70         <dependencies>
71                 <dependency>
72                         <groupId>org.onap.aaf.misc</groupId>
73                         <artifactId>aaf-misc-rosetta</artifactId>
74                         
75                 </dependency>
76                 <dependency>
77                         <groupId>org.onap.aaf.cadi</groupId>
78                         <artifactId>aaf-cadi-core</artifactId>
79                 </dependency>
80
81                 <dependency>
82                         <groupId>javax.servlet</groupId>
83                         <artifactId>servlet-api</artifactId>
84                         <scope>compile</scope>
85                 </dependency>
86         </dependencies>
87
88         <build>
89                 <plugins>
90                         <plugin>
91                                 <groupId>org.apache.maven.plugins</groupId>
92                                 <artifactId>maven-jarsigner-plugin</artifactId>
93                         </plugin>
94                 </plugins>
95         </build>
96         
97 </project>