a553b1b07806ddcdeaaed77eae1f6ed43ee22bcf
[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         </developers>
61
62         <dependencies>
63                 <dependency>
64                         <groupId>org.onap.aaf.misc</groupId>
65                         <artifactId>aaf-misc-rosetta</artifactId>
66                         
67                 </dependency>
68                 <dependency>
69                         <groupId>org.onap.aaf.cadi</groupId>
70                         <artifactId>aaf-cadi-core</artifactId>
71                 </dependency>
72
73                 <dependency>
74                         <groupId>javax.servlet</groupId>
75                         <artifactId>servlet-api</artifactId>
76                         <scope>compile</scope>
77                 </dependency>
78         </dependencies>
79
80         <build>
81                 <plugins>
82                         <plugin>
83                                 <groupId>org.apache.maven.plugins</groupId>
84                                 <artifactId>maven-jarsigner-plugin</artifactId>
85                         </plugin>
86                 </plugins>
87         </build>
88         
89 </project>