d657a27c60cefaabd2ee2a02c4786f52f91751f9
[aaf/authz.git] / pom.xml
1 <!--
2   ============LICENSE_START====================================================
3   * org.onap.aai
4   * ===========================================================================
5   * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6   * Copyright © 2017 Amdocs
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   * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22   *
23 -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26
27         <modelVersion>4.0.0</modelVersion>
28         <groupId>org.onap.aaf.authz</groupId>
29         <artifactId>parent</artifactId>
30         <version>1.0.0-SNAPSHOT</version>
31         <name>Authz Parent (pom)</name>
32         <packaging>pom</packaging>
33         <url>https://github.com/att/AAF</url>
34         <licenses>
35                 <license>
36                 <name>BSD License</name>
37                 <url> </url>
38                 </license>
39         </licenses>
40         <developers>
41                 <developer>
42                 <name>Jonathan Gathman</name>
43                 <email></email>
44         <organization>ATT</organization>
45         <organizationUrl></organizationUrl>
46                 </developer>
47         </developers>
48         <description>This module is used to organize all of the common SWM (Software Manager) 
49                 artifacts and capabilities that are inherited by all modules that are SWM
50                 packaged.  This prevents duplication of these common artifacts, plugins, and 
51                 other settings and provides a single place to support this configuration.
52         </description>
53                  <parent>
54                 <groupId>org.onap.oparent</groupId>
55                 <artifactId>oparent</artifactId>
56                 <version>1.0.0-SNAPSHOT</version>
57         </parent>
58         <properties>
59                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
60                 <skipTests>false</skipTests>
61                 <project.interfaceVersion>2.6</project.interfaceVersion>
62                 <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion>
63                 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
64                 <project.dme2Version>3.1.200</project.dme2Version>
65         </properties>
66
67         <build>
68                 <pluginManagement>
69                 <plugins>
70                           <plugin>
71                                         <groupId>org.apache.maven.plugins</groupId>
72                                         <artifactId>maven-compiler-plugin</artifactId>
73                                         <version>2.3.2</version> 
74                                         <configuration>
75                                                 <source>1.8</source>
76                                                 <target>1.8</target>
77                                         </configuration>
78                                 </plugin>
79                                 <plugin>
80                                         <groupId>org.apache.maven.plugins</groupId>
81                                         <artifactId>maven-deploy-plugin</artifactId>
82                                         <version>2.6</version>
83                                                 <configuration>
84                                                         <skip>false</skip>
85                                                 </configuration>        
86                                 </plugin>
87         
88         
89                                 <plugin>
90                                         <groupId>org.codehaus.mojo</groupId>
91                                         <artifactId>jaxb2-maven-plugin</artifactId>
92                                         <version>1.3</version>
93                                         <executions>
94                                                 <execution>
95                                                         <phase>generate-sources</phase>
96                                                         <goals>
97                                                                 <goal>xjc</goal>
98                                                         </goals>
99                                                 </execution>
100                                         </executions>
101                                         <configuration>
102                                                 <schemaDirectory>src/main/xsd</schemaDirectory>
103                                         </configuration>
104                                 </plugin>
105         
106                                 <plugin>
107                                   <groupId>org.apache.maven.plugins</groupId>
108                                   <artifactId>maven-failsafe-plugin</artifactId>
109                                   <version>2.17</version>
110                                   <configuration>
111                                                 <skipTests>true</skipTests>
112                                   </configuration>
113                                   <executions>
114                                         <execution>
115                                           <id>integration-test</id>
116                                           <goals>
117                                                 <goal>integration-test</goal>
118                                                 <goal>verify</goal>
119                                           </goals>
120                                         </execution>
121                                   </executions>
122                                 </plugin>
123                                 
124                                 
125                                                         <plugin>
126                         <groupId>org.apache.maven.plugins</groupId>
127                         <artifactId>maven-javadoc-plugin</artifactId>
128                         <configuration>
129                         <failOnError>false</failOnError>
130                         </configuration>
131                         <executions>
132                                 <execution>
133                                         <id>attach-javadocs</id>
134                                         <goals>
135                                                 <goal>jar</goal>
136                                         </goals>
137                                 </execution>
138                         </executions>
139                 </plugin> 
140            
141            
142                <plugin>
143                       <groupId>org.apache.maven.plugins</groupId>
144                       <artifactId>maven-source-plugin</artifactId>
145                       <version>2.2.1</version>
146                       <executions>
147                         <execution>
148                           <id>attach-sources</id>
149                           <goals>
150                             <goal>jar-no-fork</goal>
151                           </goals>
152                         </execution>
153                       </executions>
154                     </plugin>
155                         
156                 <plugin>
157                                 <groupId>org.codehaus.mojo</groupId>
158                                 <artifactId>cobertura-maven-plugin</artifactId>
159                                 <version>2.7</version>
160                                 <configuration>
161                                         <formats>
162                                         <format>html</format>
163                                         <format>xml</format>
164                                   </formats>
165                                 </configuration>
166                         </plugin>
167                 
168                                 
169                 </plugins>
170                 </pluginManagement>                     
171     </build>    
172         
173         <dependencies> 
174                 <dependency>
175                         <groupId>junit</groupId>
176                         <artifactId>junit</artifactId>
177                         <version>4.10</version>
178                         <scope>test</scope>
179                 </dependency>
180
181                 <dependency>
182                     <groupId>org.mockito</groupId>
183                     <artifactId>mockito-core</artifactId>
184                     <version>1.10.19</version>
185                     <scope>test</scope>
186                 </dependency>
187                 <dependency>
188                     <groupId>org.powermock</groupId>
189                     <artifactId>powermock-module-junit4</artifactId>
190                     <version>1.6.4</version>
191                     <scope>test</scope>
192                 </dependency>
193                 <dependency>
194                     <groupId>org.powermock</groupId>
195                     <artifactId>powermock-api-mockito</artifactId>
196                     <version>1.6.4</version>
197                     <scope>test</scope>
198                 </dependency> 
199
200          
201         </dependencies>         
202
203         <modules>
204
205                 <module>authz-client</module>
206         
207         </modules>
208         
209         <dependencyManagement>
210                 <dependencies>
211                         <dependency>
212                                 <groupId>org.onap.aaf.inno</groupId>
213                                 <artifactId>env</artifactId>
214                                 <version>${project.innoVersion}</version>
215                         </dependency>
216
217                         <dependency>
218                                 <groupId>org.onap.aaf.inno</groupId>
219                                 <artifactId>log4j</artifactId>
220                                 <version>${project.innoVersion}</version>
221                         </dependency>
222
223                         <dependency>
224                                 <groupId>org.onap.aaf.inno</groupId>
225                                 <artifactId>rosetta</artifactId>
226                                 <version>${project.innoVersion}</version>
227                         </dependency>
228
229                         <dependency>
230                                 <groupId>org.onap.aaf.inno</groupId>
231                                 <artifactId>xgen</artifactId>
232                                 <version>${project.innoVersion}</version>
233                         </dependency>
234                         
235
236                         
237
238                         <dependency>
239                                 <groupId>com.att.aft</groupId>
240                                 <artifactId>dme2</artifactId>
241                                 <version>${project.dme2Version}</version>
242                         </dependency>
243                 
244                         <dependency>
245                           <groupId>javax.servlet</groupId>
246                           <artifactId>servlet-api</artifactId>
247                           <version>2.5</version>
248                         </dependency>
249                         
250                         <dependency>
251                                 <groupId>org.eclipse.jetty</groupId>
252                                 <artifactId>jetty-servlet</artifactId>
253                                 <version>9.0.3.v20130506</version>
254                         </dependency>
255                         
256                         <dependency>
257                                 <groupId>com.datastax.cassandra</groupId>
258                                 <artifactId>cassandra-all</artifactId>
259                                 <version>2.1.10</version>
260                                 <exclusions>
261                               <exclusion> 
262                                 <groupId>org.slf4j</groupId>
263                                 <artifactId>slf4j-log4j12</artifactId>
264                               </exclusion>
265                               <exclusion> 
266                                 <groupId>log4j</groupId>
267                                 <artifactId>log4j</artifactId>
268                               </exclusion>
269                             </exclusions> 
270                         </dependency>
271                         <dependency>
272                                 <groupId>com.datastax.cassandra</groupId>
273                                 <artifactId>cassandra-driver-core</artifactId>
274                                 <!-- version>1.0.3</version -->
275                                 <!-- version>1.0.5</version -->
276                                 <version>2.1.10</version>
277                                 <exclusions>
278                               <exclusion> 
279                                 <groupId>org.slf4j</groupId>
280                                 <artifactId>slf4j-log4j12</artifactId>
281                               </exclusion>
282                               <exclusion> 
283                                 <groupId>log4j</groupId>
284                                 <artifactId>log4j</artifactId>
285                               </exclusion>
286                             </exclusions> 
287                         </dependency>   
288
289                         <dependency>
290                                 <groupId>org.slf4j</groupId>
291                                 <artifactId>slf4j-log4j12</artifactId>
292                                 <version>1.7.5</version>
293                         </dependency>
294
295                         <dependency>
296                         <groupId>javax.mail</groupId>
297                         <artifactId>mail</artifactId>
298                         <version>1.4.5</version>
299                 </dependency> 
300
301                         
302                 </dependencies>
303         </dependencyManagement>
304
305         
306 </project>