Modify authz pom files.
[aaf/authz.git] / cadi / aaf / 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         <parent>
25                 <groupId>org.onap.aaf.cadi</groupId>
26                 <artifactId>parent</artifactId>
27                 <version>1.5.0-SNAPSHOT</version>
28                 <relativePath>..</relativePath>
29         </parent>
30
31         <modelVersion>4.0.0</modelVersion>
32         <artifactId>aaf-cadi-aaf</artifactId>
33         <name>AAF CADI AAF Connection Library</name>
34         <packaging>jar</packaging>
35
36         <developers>
37                 <developer>
38                         <name>Jonathan Gathman</name>
39                         <email>jonathan.gathman@att.com</email>
40                         <organization>ATT</organization>
41                         <roles>
42                                 <role>Architect</role>
43                                 <role>Lead Developer</role>
44                         </roles>
45                 </developer>
46                 <developer>
47                         <name>Gabe Maurer</name>
48                         <email>gabe.maurer@att.com</email>
49                         <organization>ATT</organization>
50                         <roles>
51                                 <role>Developer</role>
52                         </roles>
53                 </developer>
54                 <developer>
55                         <name>Ian Howell</name>
56                         <email>ian.howell@att.com</email>
57                         <organization>ATT</organization>
58                         <roles>
59                                 <role>Developer</role>
60                         </roles>
61                 </developer>
62                 <developer>
63                         <name>Sai Gandham</name>
64                         <email>sai.gandham@att.com</email>
65                         <organization>ATT</organization>
66                         <roles>
67                                 <role>Developer</role>
68                         </roles>
69                 </developer>
70         </developers>
71
72
73         <dependencies>
74                 <dependency>
75                         <groupId>org.onap.aaf.auth</groupId>
76                         <artifactId>aaf-auth-client</artifactId>
77                 </dependency>
78
79                 <dependency>
80                         <groupId>org.onap.aaf.cadi</groupId>
81                         <artifactId>aaf-cadi-client</artifactId>
82                 </dependency>
83
84                 <dependency>
85                         <groupId>org.onap.aaf.misc</groupId>
86                         <artifactId>aaf-misc-env</artifactId>
87                 </dependency>
88
89                 <dependency>
90                         <groupId>org.onap.aaf.cadi</groupId>
91                         <artifactId>aaf-cadi-core</artifactId>
92                 </dependency>
93
94                 <dependency>
95                         <groupId>javax.servlet</groupId>
96                         <artifactId>servlet-api</artifactId>
97                         <scope>provided</scope>
98                 </dependency>
99         </dependencies>
100         <build>
101                 <plugins>
102                         <plugin>
103                                 <groupId>org.apache.maven.plugins</groupId>
104                                 <artifactId>maven-compiler-plugin</artifactId>
105                         </plugin>
106
107                         <!-- We want to create a Jar with Rosetta built in (since I don't want 
108                                 a separate deployment at this time Use this one as the jar to put in SWM 
109                                 packages <plugin> <artifactId>maven-assembly-plugin</artifactId> <configuration> 
110                                 <classifier>tests</classifier> <archive> <manifest> <mainClass>org.onap.aaf.cadi.cm.CmAgent</mainClass> 
111                                 </manifest> <manifestEntries> <Sealed>true</Sealed> </manifestEntries> </archive> 
112                                 </configuration> <executions> <execution> <id>full</id> <phase>package</phase> 
113                                 <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>src/assemble/cadi-aaf.xml</descriptor> 
114                                 </descriptors> </configuration> </execution> </executions> </plugin> -->
115                 </plugins>
116         </build>
117 </project>