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