d09bd5d347bafc36af507b5e5959d60635e2680e
[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         </developers>
64
65         <properties>
66                 <maven.test.failure.ignore>false</maven.test.failure.ignore>
67         </properties>
68
69         <dependencies>
70
71                 <dependency>
72                         <groupId>org.onap.aaf.misc</groupId>
73                         <artifactId>aaf-misc-env</artifactId>
74                 </dependency>
75
76                 <dependency>
77                         <groupId>org.onap.aaf.cadi</groupId>
78                         <artifactId>aaf-cadi-core</artifactId>
79                 </dependency>
80
81                 <dependency>
82                         <groupId>org.onap.aaf.misc</groupId>
83                         <artifactId>aaf-misc-rosetta</artifactId>
84                 </dependency>
85
86                 <dependency>
87                         <groupId>org.onap.aaf.cadi</groupId>
88                         <artifactId>aaf-cadi-aaf</artifactId>
89                 </dependency>
90
91                 <dependency>
92                         <groupId>org.onap.aaf.auth</groupId>
93                         <artifactId>aaf-auth-cass</artifactId>
94                 </dependency>
95
96                 <dependency>
97                         <groupId>org.slf4j</groupId>
98                         <artifactId>slf4j-log4j12</artifactId>
99                 </dependency>
100
101         </dependencies>
102
103         <build>
104                 <plugins>
105                         <plugin>
106                                 <groupId>org.apache.maven.plugins</groupId>
107                                 <artifactId>maven-compiler-plugin</artifactId>
108                                 <configuration>
109                                         <source>1.7</source>
110                                         <target>1.7</target>
111                                 </configuration>
112                         </plugin>
113
114                         <plugin>
115                                 <groupId>org.apache.maven.plugins</groupId>
116                                 <artifactId>maven-deploy-plugin</artifactId>
117                                 <configuration>
118                                         <skip>true</skip>
119                                 </configuration>
120                         </plugin>
121                 </plugins>
122         </build>
123 </project>