Modify authz pom files.
[aaf/authz.git] / auth / auth-batch / 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/maven-v4_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>auth-batch</artifactId>
33         <name>AAF Auth Batch</name>
34         <description>Batch Processing for AAF Auth</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         <properties>
74                 <maven.test.failure.ignore>false</maven.test.failure.ignore>
75         </properties>
76
77         <dependencies>
78
79                 <dependency>
80                         <groupId>org.onap.aaf.misc</groupId>
81                         <artifactId>aaf-misc-env</artifactId>
82                 </dependency>
83
84                 <dependency>
85                         <groupId>org.onap.aaf.cadi</groupId>
86                         <artifactId>aaf-cadi-core</artifactId>
87                 </dependency>
88
89                 <dependency>
90                         <groupId>org.onap.aaf.misc</groupId>
91                         <artifactId>aaf-misc-rosetta</artifactId>
92                 </dependency>
93
94                 <dependency>
95                         <groupId>org.onap.aaf.cadi</groupId>
96                         <artifactId>aaf-cadi-aaf</artifactId>
97                 </dependency>
98
99                 <dependency>
100                         <groupId>org.onap.aaf.auth</groupId>
101                         <artifactId>aaf-auth-cass</artifactId>
102                 </dependency>
103
104                 <dependency>
105                         <groupId>org.slf4j</groupId>
106                         <artifactId>slf4j-log4j12</artifactId>
107                 </dependency>
108
109         </dependencies>
110
111         <build>
112                 <plugins>
113                         <plugin>
114                                 <groupId>org.apache.maven.plugins</groupId>
115                                 <artifactId>maven-compiler-plugin</artifactId>
116                                 <configuration>
117                                         <source>1.7</source>
118                                         <target>1.7</target>
119                                 </configuration>
120                         </plugin>
121
122                         <plugin>
123                                 <groupId>org.apache.maven.plugins</groupId>
124                                 <artifactId>maven-deploy-plugin</artifactId>
125                                 <configuration>
126                                         <skip>true</skip>
127                                 </configuration>
128                         </plugin>
129                 </plugins>
130         </build>
131 </project>