Merge "Add INFO.yaml file"
[aaf/authz.git] / auth / 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
25         <modelVersion>4.0.0</modelVersion>
26         <parent>
27         <groupId>org.onap.aaf.authz</groupId>
28         <artifactId>parent</artifactId>
29         <version>2.1.0-SNAPSHOT</version>
30     </parent>
31         <artifactId>authparent</artifactId>
32         <name>AAF Auth Parent</name>
33         <packaging>pom</packaging>
34
35         
36         <properties>
37                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
38                 <project.interfaceVersion>2.1.0-SNAPSHOT</project.interfaceVersion>
39                 <!-- >project.jettyVersion>9.3.22.v20171030</project.jettyVersion -->
40                 <project.jettyVersion>9.4.8.v20171121</project.jettyVersion>
41                 <powermock.version>1.5.1</powermock.version>
42                 <project.ext_root_dir>/opt/app/osaaf</project.ext_root_dir>
43                 <!--  SONAR  -->
44                  <jacoco.version>0.7.7.201606060606</jacoco.version>
45             <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
46             <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
47             <!-- Default Sonar configuration -->
48             <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
49             <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
50             <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
51             <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
52                 <nexusproxy>https://nexus.onap.org</nexusproxy>
53                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
54                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
55                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
56                 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
57         </properties>
58
59         <developers>
60                 <developer>
61                         <name>Jonathan Gathman</name>
62                         <email>jonathan.gathman@att.com</email>
63                         <organization>ATT</organization>
64                         <roles>
65                                 <role>Architect</role>
66                                 <role>Lead Developer</role>
67                         </roles>
68                 </developer>
69                 <developer>
70                         <name>Gabe Maurer</name>
71                         <email>gabe.maurer@att.com</email>
72                         <organization>ATT</organization>
73                         <roles>
74                                 <role>Developer</role>
75                         </roles>
76                 </developer>
77                 <developer>
78                         <name>Ian Howell</name>
79                         <email>ian.howell@att.com</email>
80                         <organization>ATT</organization>
81                         <roles>
82                                 <role>Developer</role>
83                         </roles>
84                 </developer>
85                 <developer>
86                         <name>Sai Gandham</name>
87                         <email>sai.gandham@att.com</email>
88                         <organization>ATT</organization>
89                         <roles>
90                                 <role>Developer</role>
91                         </roles>
92                 </developer>
93         </developers>
94
95         <build>
96                 <pluginManagement>
97                         <plugins>
98                                 <plugin>
99                                         <groupId>org.apache.maven.plugins</groupId>
100                                         <artifactId>maven-compiler-plugin</artifactId>
101                                         <version>2.3.2</version>
102                                         <configuration>
103                                                 <source>1.8</source>
104                                                 <target>1.8</target>
105                                         </configuration>
106                                 </plugin>
107                                 <plugin>
108                                         <groupId>org.apache.maven.plugins</groupId>
109                                         <artifactId>maven-deploy-plugin</artifactId>
110                                         <version>2.6</version>
111                                         <configuration>
112                                                 <skip>false</skip>
113                                         </configuration>
114                                 </plugin>
115
116                                 <plugin>
117                                         <groupId>org.apache.maven.plugins</groupId>
118                                         <artifactId>maven-surefire-plugin</artifactId>
119                                         <version>2.17</version>
120                                         <configuration>
121                                                 <skipTests>false</skipTests>
122
123                                                 <includes>
124                                                         <include>**/JU*.java</include>
125                                                 </includes>
126                                                 <excludes>
127                                                 </excludes>
128
129                                         </configuration>
130                                 </plugin>
131
132                                 <plugin>
133                                         <groupId>org.apache.maven.plugins</groupId>
134                                         <artifactId>maven-failsafe-plugin</artifactId>
135                                         <version>2.17</version>
136                                         <configuration>
137                                                 <skipTests>false</skipTests>
138                                         </configuration>
139                                         <executions>
140                                                 <execution>
141                                                         <id>integration-test</id>
142                                                         <goals>
143                                                                 <goal>integration-test</goal>
144                                                                 <goal>verify</goal>
145                                                         </goals>
146                                                 </execution>
147                                         </executions>
148                                 </plugin>
149                                 
150                                 <!--  Builds O/S Command line ready jars and scripts, ready to run/zip -->
151                                 <plugin>
152                                         <groupId>org.codehaus.mojo</groupId>
153                                         <artifactId>appassembler-maven-plugin</artifactId>
154                                         <version>1.10</version>
155                                         <executions>
156                                                 <execution>
157                                                         <goals>
158                                                                 <goal>assemble</goal>
159                                                         </goals>
160                                                         <phase>install</phase>
161                                                 </execution>
162                                         </executions>
163                                         <configuration>
164                                                 <programs/> <!-- this set in projects that have programs -->
165                                                 <assembleDirectory>../aaf_${project.version}</assembleDirectory>
166                                                 <copyConfigurationDirectory>true</copyConfigurationDirectory>
167                                                 <configurationDirectory>etc</configurationDirectory>
168                                                 <repositoryName>lib</repositoryName>
169                                                 <includeConfigurationDirectoryInClasspath>false</includeConfigurationDirectoryInClasspath>
170                                                 <repositoryLayout>flat</repositoryLayout>
171                                         </configuration>
172                                 </plugin>
173                                 
174                                 <!-- Build Docker Image -->
175                                 <plugin>
176                                         <groupId>com.spotify</groupId>
177                                         <artifactId>docker-maven-plugin</artifactId>
178                                         <version>1.0.0</version>
179                                         <configuration>
180                                                 <imageName>onap/osaaf/${project.artifactId}</imageName>
181                                                 <!-- <dockerDirectory>${dockerLocation}</dockerDirectory> -->
182                                                 <dockerDirectory>${basedir}/src/main/resources/docker</dockerDirectory>
183                                                 <imageTags>
184                                                         <imageTag>latest</imageTag>
185                                                         <imageTag>${project.docker.latesttagtimestamp.version}</imageTag>
186                                                         <imageTag>${project.docker.latesttag.version}</imageTag>
187                                                 </imageTags>
188                                                 <forceTags>true</forceTags>
189                                                 <!-- <resources> <resource> <targetPath>/</targetPath> <directory>${project.build.directory}/opt</directory> 
190                                                         <filtering>true</filtering> <includes> <include>**/**</include> </includes> 
191                                                         </resource> </resources> -->
192                                                 <resources>
193                                                         <resource>
194                                                                 <targetPath>/</targetPath>
195                                                                 <directory>${project.build.directory}/opt</directory>
196                                                                 <include>${project.build.finalName}.jar</include>
197                                                         </resource>
198                                                         <resource>
199                                                                 <targetPath>/</targetPath>
200                                                                 <directory>${project.build.directory}</directory>
201                                                                 <include>**/**</include>
202                                                         </resource>
203                                                 </resources>
204                                         </configuration>
205                                         <executions>
206                                                 <execution>
207                                                         <id>build-image</id>
208                                                         <phase>package</phase>
209                                                         <goals>
210                                                                 <goal>build</goal>
211                                                         </goals>
212                                                         <configuration>
213                                                                 <skipDockerBuild>${skip.docker.build}</skipDockerBuild>
214                                                         </configuration>
215                                                 </execution>
216                                 
217                                                 <execution>
218                                                         <id>tag-image-project-version</id>
219                                                         <phase>package</phase>
220                                                         <goals>
221                                                                 <goal>tag</goal>
222                                                         </goals>
223                                                         <configuration>
224                                                                 <image>onap/osaaf/${project.artifactId}</image>
225                                                                 <newName>${docker.push.registry}/onap/osaaf/${project.artifactId}:${project.version}</newName>
226                                                                 <skipDockerTag>${skip.docker.push}</skipDockerTag>
227                                                         </configuration>
228                                                 </execution>
229                                 
230                                                 <execution>
231                                                         <id>tag-image-latest</id>
232                                                         <phase>package</phase>
233                                                         <goals>
234                                                                 <goal>tag</goal>
235                                                         </goals>
236                                                         <configuration>
237                                                                 <image>onap/aaf/authz-service</image>
238                                                                 <newName>${docker.push.registry}/onap/osaaf/${project.artifactId}:latest</newName>
239                                                                 <skipDockerTag>${skip.docker.push}</skipDockerTag>
240                                                         </configuration>
241                                                 </execution>
242                                 
243                                                 <execution>
244                                                         <id>push-image-latest</id>
245                                                         <phase>deploy</phase>
246                                                         <goals>
247                                                                 <goal>push</goal>
248                                                         </goals>
249                                                         <configuration>
250                                                                 <imageName>${docker.push.registry}/onap/osaaf/${project.artifactId}:${project.version}</imageName>
251                                                                 <skipDockerPush>${skip.docker.push}</skipDockerPush>
252                                                         </configuration>
253                                                 </execution>
254                                 
255                                                 <execution>
256                                                         <id>push-image</id>
257                                                         <phase>deploy</phase>
258                                                         <goals>
259                                                                 <goal>push</goal>
260                                                         </goals>
261                                                         <configuration>
262                                                                 <imageName>${docker.push.registry}/onap/osaaf/${project.artifactId}:latest</imageName>
263                                                                 <skipDockerPush>${skip.docker.push}</skipDockerPush>
264                                                         </configuration>
265                                                 </execution>
266                                         </executions>
267                                 </plugin>
268                                 <plugin>
269                                 <groupId>org.sonatype.plugins</groupId>
270                                 <artifactId>nexus-staging-maven-plugin</artifactId>
271                                 <version>1.6.7</version>
272                                 <extensions>true</extensions>
273                                 <configuration>
274                                         <nexusUrl>${nexusproxy}</nexusUrl>
275                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
276                                         <serverId>ecomp-staging</serverId>
277                                 </configuration>
278                         </plugin>               
279                         <plugin>
280                                 <groupId>org.jacoco</groupId>
281                                 <artifactId>jacoco-maven-plugin</artifactId>
282                                 <version>0.7.7.201606060606</version>
283                                 <configuration>
284                                         <dumpOnExit>true</dumpOnExit>
285                                         <includes>
286                                                 <include>org.onap.aaf.*</include>
287                                         </includes>
288                                 </configuration>
289                                 <executions>
290                                         <execution>
291                                                 <id>pre-unit-test</id>
292                                                 <goals>
293                                                         <goal>prepare-agent</goal>
294                                                 </goals>
295                                                 <configuration>
296                                                         <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
297                                                         <!-- <append>true</append> -->
298                                                 </configuration>
299                                         </execution>
300                                         <execution>
301                                                 <id>pre-integration-test</id>
302                                                 <phase>pre-integration-test</phase>
303                                                 <goals>
304                                                         <goal>prepare-agent</goal>
305                                                 </goals>
306                                                 <configuration>
307                                                         <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
308                                                         <!-- <append>true</append> -->
309                                                 </configuration>
310                                         </execution>
311                                         <execution>
312                         <goals>
313                             <goal>merge</goal>
314                         </goals>
315                         <phase>post-integration-test</phase>
316                         <configuration>
317                             <fileSets>
318                                 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
319                                     <directory>${project.build.directory}/coverage-reports</directory>
320                                     <includes>
321                                         <include>*.exec</include>
322                                     </includes>
323                                 </fileSet>
324                             </fileSets>
325                             <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
326                         </configuration>
327                     </execution>
328                                 </executions>
329                         </plugin>
330                         </plugins>
331                 </pluginManagement>
332         </build>
333
334         <dependencies>
335                 <dependency>
336                         <groupId>org.mockito</groupId>
337                         <artifactId>mockito-all</artifactId>
338                         <version>1.9.5</version>
339                         <scope>test</scope>
340                 </dependency>
341                 <dependency>
342                         <groupId>org.powermock</groupId>
343                         <artifactId>powermock-module-junit4</artifactId>
344                         <version>${powermock.version}</version>
345                         <scope>test</scope>
346                 </dependency>
347                 <dependency>
348                         <groupId>org.powermock</groupId>
349                         <artifactId>powermock-api-mockito</artifactId>
350                         <version>${powermock.version}</version>
351                         <scope>test</scope>
352                 </dependency>
353                 <dependency>
354                         <groupId>junit</groupId>
355                         <artifactId>junit</artifactId>
356                         <version>4.10</version>
357                         <scope>test</scope>
358                 </dependency>
359
360         </dependencies>
361
362         <modules>
363                 <!-- <module>auth-client</module> complile manually with mvn -N independently -->
364                 <module>auth-core</module>
365                 <module>auth-cass</module>
366                 <module>auth-deforg</module>
367
368                 <module>auth-service</module>
369                 <module>auth-cmd</module>
370                 <module>auth-batch</module>
371
372                 <module>auth-gui</module>
373                 <module>auth-locate</module>
374                 <module>auth-oauth</module>
375                 <module>auth-certman</module>
376                 <module>auth-fs</module>
377                 <module>auth-hello</module>
378         </modules>
379
380         <dependencyManagement>
381                 <dependencies>
382                         <dependency>
383                                 <groupId>org.onap.aaf.authz</groupId>
384                                 <artifactId>aaf-misc-env</artifactId>
385                                 <version>${project.version}</version>
386                         </dependency>
387
388                         <dependency>
389                                 <groupId>org.onap.aaf.authz</groupId>
390                                 <artifactId>aaf-misc-log4j</artifactId>
391                                 <version>${project.version}</version>
392                         </dependency>
393
394                         <dependency>
395                                 <groupId>org.onap.aaf.authz</groupId>
396                                 <artifactId>aaf-misc-rosetta</artifactId>
397                                 <version>${project.version}</version>
398                         </dependency>
399
400                         <dependency>
401                                 <groupId>org.onap.aaf.authz</groupId>
402                                 <artifactId>aaf-misc-xgen</artifactId>
403                                 <version>${project.version}</version>
404                         </dependency>
405
406                         <dependency>
407                                 <groupId>org.onap.aaf.authz</groupId>
408                                 <artifactId>aaf-cadi-core</artifactId>
409                                 <version>${project.version}</version>
410                         </dependency>
411
412                         <dependency>
413                                 <groupId>org.onap.aaf.authz</groupId>
414                                 <artifactId>aaf-cadi-client</artifactId>
415                                 <version>${project.version}</version>
416                         </dependency>
417
418                         <dependency>
419                                 <groupId>org.onap.aaf.authz</groupId>
420                                 <artifactId>aaf-cadi-aaf</artifactId>
421                                 <version>${project.version}</version>
422                                 <exclusions>
423                                         <exclusion>
424                                                 <groupId>org.apache.cassandra</groupId>
425                                                 <artifactId>cassandra-all</artifactId>
426                                         </exclusion>
427                                 </exclusions>
428                         </dependency>
429
430                         <dependency>
431                                 <groupId>org.onap.aaf.authz</groupId>
432                                 <artifactId>aaf-auth-client</artifactId>
433                                 <version>${project.version}</version>
434                         </dependency>
435
436                         <dependency>
437                                 <groupId>org.onap.aaf.authz</groupId>
438                                 <artifactId>aaf-auth-core</artifactId>
439                                 <version>${project.version}</version>
440                         </dependency>
441
442                         <dependency>
443                                 <groupId>org.onap.aaf.authz</groupId>
444                                 <artifactId>aaf-auth-cass</artifactId>
445                                 <version>${project.version}</version>
446                         </dependency>
447
448                         <dependency>
449                                 <groupId>org.onap.aaf.authz</groupId>
450                                 <artifactId>aaf-auth-cmd</artifactId>
451                                 <version>${project.version}</version>
452                         </dependency>
453
454                         <dependency>
455                                 <groupId>org.onap.aaf.authz</groupId>
456                                 <artifactId>aaf-auth-oauth</artifactId>
457                                 <version>${project.version}</version>
458                         </dependency>
459
460                         <dependency>
461                                 <groupId>org.onap.aaf.authz</groupId>
462                                 <artifactId>aaf-auth-deforg</artifactId>
463                                 <version>${project.version}</version>
464                         </dependency>
465
466                         <dependency>
467                                 <groupId>javax.servlet</groupId>
468                                 <artifactId>javax.servlet-api</artifactId>
469                                 <version>3.0.1</version>
470                         </dependency>
471
472                         <dependency>
473                                 <groupId>org.eclipse.jetty</groupId>
474                                 <artifactId>jetty-servlet</artifactId>
475                                 <version>${project.jettyVersion}</version>
476                         </dependency>
477
478                         <dependency>
479                                 <groupId>org.eclipse.jetty</groupId>
480                                 <artifactId>jetty-server</artifactId>
481                                 <version>${project.jettyVersion}</version>
482                         </dependency>
483
484                         <dependency>
485                                 <groupId>com.datastax.cassandra</groupId>
486                                 <artifactId>cassandra-all</artifactId>
487                                 <version>3.3.0</version>
488                                 <exclusions>
489                                         <exclusion>
490                                                 <groupId>org.slf4j</groupId>
491                                                 <artifactId>slf4j-log4j12</artifactId>
492                                         </exclusion>
493                                         <exclusion>
494                                                 <groupId>log4j</groupId>
495                                                 <artifactId>log4j</artifactId>
496                                         </exclusion>
497                                 </exclusions>
498                         </dependency>
499
500                         <dependency>
501                                 <groupId>com.datastax.cassandra</groupId>
502                                 <artifactId>cassandra-driver-core</artifactId>
503                                 <version>3.4.0</version>
504                                 <exclusions>
505                                         <exclusion>
506                                                 <groupId>org.slf4j</groupId>
507                                                 <artifactId>slf4j-log4j12</artifactId>
508                                         </exclusion>
509                                         <exclusion>
510                                                 <groupId>log4j</groupId>
511                                                 <artifactId>log4j</artifactId>
512                                         </exclusion>
513                                 </exclusions>
514                         </dependency>
515                         
516                         <!-- Note: Ensure DataStax uses more up-to-date netty handler -->               
517                         <dependency>
518                                   <groupId>io.netty</groupId>
519                                   <artifactId>netty-handler</artifactId>
520                                   <version>4.1.22.Final</version>
521                         </dependency>
522
523                         
524
525                         <dependency>
526                                 <groupId>org.slf4j</groupId>
527                                 <artifactId>slf4j-log4j12</artifactId>
528                                 <version>1.7.5</version>
529                         </dependency>
530
531                         <dependency>
532                                 <groupId>javax.mail</groupId>
533                                 <artifactId>mail</artifactId>
534                                 <version>1.4.5</version>
535                         </dependency>
536                 </dependencies>
537         </dependencyManagement>
538
539
540         
541
542 </project>