move shiro modules to cadi repo
[aaf/authz.git] / cadi / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23         <modelVersion>4.0.0</modelVersion>
24         <parent>
25             <groupId>org.onap.aaf.authz</groupId>
26             <artifactId>parent</artifactId>
27             <version>2.1.2-SNAPSHOT</version>
28     </parent>
29         <artifactId>cadiparent</artifactId>
30         <name>AAF CADI Parent (Code, Access, Data, Identity)</name>
31         <inceptionYear>2015-07-20</inceptionYear>
32         <organization>
33                 <name>ONAP</name>
34         </organization>
35         <packaging>pom</packaging>
36
37         
38         <properties>
39                 <!-- <sonar.skip>true</sonar.skip> -->
40                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41                 <project.jettyVersion>9.3.9.v20160517</project.jettyVersion>
42                 <powermock.version>1.5.1</powermock.version>
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         <!-- ============================================================== -->
60         <!-- Define the major contributors and developers of CADI -->
61         <!-- ============================================================== -->
62         <developers>
63                 <developer>
64                         <name>Jonathan Gathman</name>
65                         <email>jonathan.gathman@att.com</email>
66                         <organization>ATT</organization>
67                         <roles>
68                                 <role>Architect</role>
69                                 <role>Lead Developer</role>
70                         </roles>
71                 </developer>
72                 <developer>
73                         <name>Gabe Maurer</name>
74                         <email>gabe.maurer@att.com</email>
75                         <organization>ATT</organization>
76                         <roles>
77                                 <role>Developer</role>
78                         </roles>
79                 </developer>
80                 <developer>
81                         <name>Ian Howell</name>
82                         <email>ian.howell@att.com</email>
83                         <organization>ATT</organization>
84                         <roles>
85                                 <role>Developer</role>
86                         </roles>
87                 </developer>
88                 <developer>
89                         <name>Sai Gandham</name>
90                         <email>sai.gandham@att.com</email>
91                         <organization>ATT</organization>
92                         <roles>
93                                 <role>Developer</role>
94                         </roles>
95                 </developer>
96         </developers>
97
98
99         <dependencies>
100                 <dependency>
101                         <groupId>org.mockito</groupId>
102                         <artifactId>mockito-all</artifactId>
103                         <version>1.9.5</version>
104                         <scope>test</scope>
105                 </dependency>
106
107                 <dependency>
108                         <groupId>org.powermock</groupId>
109                         <artifactId>powermock-module-junit4</artifactId>
110                         <version>${powermock.version}</version>
111                         <scope>test</scope>
112                 </dependency>
113                 <dependency>
114                         <groupId>org.powermock</groupId>
115                         <artifactId>powermock-api-mockito</artifactId>
116                         <version>${powermock.version}</version>
117                         <scope>test</scope>
118                 </dependency>
119
120                 <dependency>
121                         <groupId>junit</groupId>
122                         <artifactId>junit</artifactId>
123                         <version>4.10</version>
124                         <scope>test</scope>
125                 </dependency>
126         </dependencies>
127
128         <!-- ============================================================== -->
129         <!-- Define sub-projects (modules) -->
130         <!-- ============================================================== -->
131         <modules>
132                 <module>core</module>
133                 <module>client</module>
134                 <module>aaf</module>
135                 <module>oauth-enduser</module>
136         </modules>
137
138         <!-- ============================================================== -->
139         <!-- Define project-wide dependencies -->
140         <!-- ============================================================== -->
141         <dependencyManagement>
142                 <dependencies>
143                         <dependency>
144                                 <groupId>org.onap.aaf.authz</groupId>
145                                 <artifactId>aaf-auth-client</artifactId>
146                                 <version>${project.version}</version>
147                         </dependency>
148
149                         <dependency>
150                                 <groupId>org.onap.aaf.authz</groupId>
151                                 <artifactId>aaf-cadi-core</artifactId>
152                                 <version>${project.version}</version>
153                         </dependency>
154
155                         <dependency>
156                                 <groupId>org.onap.aaf.authz</groupId>
157                                 <artifactId>aaf-cadi-oauth</artifactId>
158                                 <version>${project.version}</version>
159                         </dependency>
160
161
162                         <!-- Prevent Cycles in Testing  -->
163                         <dependency>
164                                 <groupId>org.onap.aaf.authz</groupId>
165                                 <artifactId>aaf-cadi-core</artifactId>
166                                 <version>${project.version}</version>
167                                 <classifier>tests</classifier>
168                         </dependency>
169
170                         <dependency>
171                                 <groupId>org.onap.aaf.authz</groupId>
172                                 <artifactId>aaf-cadi-jetty</artifactId>
173                                 <version>${project.version}</version>
174                         </dependency>
175
176                         <dependency>
177                                 <groupId>org.onap.aaf.authz</groupId>
178                                 <artifactId>aaf-cadi-cass</artifactId>
179                                 <version>${project.version}</version>
180                         </dependency>
181
182                         <dependency>
183                                 <groupId>org.onap.aaf.authz</groupId>
184                                 <artifactId>aaf-cadi-aaf</artifactId>
185                                 <version>${project.version}</version>
186                         </dependency>
187
188                         <dependency>
189                                 <groupId>org.onap.aaf.authz</groupId>
190                                 <artifactId>aaf-cadi-aaf</artifactId>
191                                 <version>${project.version}</version>
192                                 <classifier>full</classifier>
193                         </dependency>
194
195                         <dependency>
196                                 <groupId>org.onap.aaf.authz</groupId>
197                                 <artifactId>aaf-cadi-client</artifactId>
198                                 <version>${project.version}</version>
199                         </dependency>
200
201                         <dependency>
202                                 <groupId>org.onap.aaf.authz</groupId>
203                                 <artifactId>aaf-misc-env</artifactId>
204                                 <version>${project.version}</version>
205                         </dependency>
206
207                         <dependency>
208                                 <groupId>org.onap.aaf.authz</groupId>
209                                 <artifactId>aaf-misc-rosetta</artifactId>
210                                 <version>${project.version}</version>
211                         </dependency>
212
213                         <dependency>
214                                 <groupId>org.onap.aaf.authz</groupId>
215                                 <artifactId>aaf-misc-log4j</artifactId>
216                                 <version>${project.version}</version>
217                         </dependency>
218
219                         <dependency>
220                                 <groupId>org.eclipse.jetty</groupId>
221                                 <artifactId>jetty-servlet</artifactId>
222                                 <version>${project.jettyVersion}</version>
223                         </dependency>
224
225                         <dependency>
226                                 <groupId>org.eclipse.jetty</groupId>
227                                 <artifactId>jetty-io</artifactId>
228                                 <version>${project.jettyVersion}</version>
229                         </dependency>
230
231                         <dependency>
232                                 <groupId>org.eclipse.jetty</groupId>
233                                 <artifactId>jetty-security</artifactId>
234                                 <version>${project.jettyVersion}</version>
235                         </dependency>
236
237                         <dependency>
238                                 <groupId>org.eclipse.jetty</groupId>
239                                 <artifactId>jetty-http</artifactId>
240                                 <version>${project.jettyVersion}</version>
241                         </dependency>
242
243                         <dependency>
244                                 <groupId>org.eclipse.jetty</groupId>
245                                 <artifactId>jetty-util</artifactId>
246                                 <version>${project.jettyVersion}</version>
247                         </dependency>
248
249                         <dependency>
250                                 <groupId>org.eclipse.jetty</groupId>
251                                 <artifactId>jetty-server</artifactId>
252                                 <version>${project.jettyVersion}</version>
253                         </dependency>
254
255                         <dependency>
256                             <groupId>javax.servlet</groupId>
257                             <artifactId>javax.servlet-api</artifactId>
258                                 <version>3.0.1</version>
259                         </dependency>
260
261                         <dependency>
262                                 <groupId>org.slf4j</groupId>
263                                 <artifactId>slf4j-api</artifactId>
264                                 <version>1.7.5</version>
265                         </dependency>
266                 </dependencies>
267         </dependencyManagement>
268
269         <!-- ============================================================== -->
270         <!-- Define common plugins and make them available for all modules -->
271         <!-- ============================================================== -->
272         <build>
273                 <testSourceDirectory>src/test/java</testSourceDirectory>
274                 <plugins>
275                 </plugins>
276                 <pluginManagement>
277                         <plugins>
278                                 <plugin>
279                                         <inherited>true</inherited>
280                                         <groupId>org.apache.maven.plugins</groupId>
281                                         <artifactId>maven-compiler-plugin</artifactId>
282                                         <version>2.3.2</version>
283                                         <configuration>
284                                                 <source>1.7</source>
285                                                 <target>1.7</target>
286                                         </configuration>
287                                 </plugin>
288
289                                 <plugin>
290                                         <groupId>org.apache.maven.plugins</groupId>
291                                         <version>2.4</version>
292                                         <artifactId>maven-jar-plugin</artifactId>
293                                         <configuration>
294                                                 <outputDirectory>target</outputDirectory>
295                                                 <archive>
296                                                         <manifestEntries>
297                                                                 <Sealed>true</Sealed>
298                                                         </manifestEntries>
299                                                 </archive>
300                                         </configuration>
301                                 </plugin>
302
303                                 <!-- Define the javadoc plugin -->
304                                 <plugin>
305                                         <groupId>org.apache.maven.plugins</groupId>
306                                         <artifactId>maven-javadoc-plugin</artifactId>
307                                         <version>2.10</version>
308                                         <configuration>
309                                                 <excludePackageNames>org.opendaylight.*</excludePackageNames>
310                                         </configuration>
311                                 </plugin>
312
313                                 <plugin>
314                                         <artifactId>maven-release-plugin</artifactId>
315                                         <version>2.5.2</version>
316                                         <configuration>
317                                                 <goals>-s ${mvn.settings} deploy</goals>
318                                         </configuration>
319                                 </plugin>
320
321                                 <plugin>
322                                         <artifactId>maven-assembly-plugin</artifactId>
323                                         <version>2.5.5</version>
324                                 </plugin>
325
326                                 <plugin>
327                                         <groupId>org.apache.maven.plugins</groupId>
328                                         <artifactId>maven-deploy-plugin</artifactId>
329                                         <version>2.8.1</version>
330                                         <configuration>
331                                                 <skip>false</skip>
332                                         </configuration>
333
334                                 </plugin>
335
336                                 <plugin>
337                                         <groupId>org.apache.maven.plugins</groupId>
338                                         <artifactId>maven-dependency-plugin</artifactId>
339                                         <version>2.10</version>
340                                 </plugin>
341
342                                 <!-- Maven surefire plugin for testing -->
343                                 <plugin>
344                                         <artifactId>maven-surefire-plugin</artifactId>
345                                         <version>2.17</version>
346                                         <configuration>
347                                                 <skipTests>false</skipTests>
348                                                 <includes>
349                                                         <include>**/JU*.java</include>
350                                                 </includes>
351                                                 <excludes>
352                                                 </excludes>
353                                         </configuration>
354                                 </plugin>
355
356                                 <!--This plugin's configuration is used to store Eclipse m2e settings
357                                         only. It has no influence on the Maven build itself. -->
358                                 <plugin>
359                                         <groupId>org.eclipse.m2e</groupId>
360                                         <artifactId>lifecycle-mapping</artifactId>
361                                         <version>1.0.0</version>
362                                         <configuration>
363                                                 <lifecycleMappingMetadata>
364                                                         <pluginExecutions>
365                                                                 <pluginExecution>
366                                                                         <pluginExecutionFilter>
367                                                                                 <groupId>
368                                                                                         org.codehaus.mojo
369                                                                                 </groupId>
370                                                                                 <artifactId>
371                                                                                         jaxb2-maven-plugin
372                                                                                 </artifactId>
373                                                                                 <versionRange>
374                                                                                         [1.3,)
375                                                                                 </versionRange>
376                                                                                 <goals>
377                                                                                         <goal>xjc</goal>
378                                                                                 </goals>
379                                                                         </pluginExecutionFilter>
380                                                                         <action>
381                                                                                 <ignore />
382                                                                         </action>
383                                                                 </pluginExecution>
384                                                         </pluginExecutions>
385                                                 </lifecycleMappingMetadata>
386                                         </configuration>
387                                 </plugin>
388                                 <plugin>
389                                         <groupId>org.sonatype.plugins</groupId>
390                                         <artifactId>nexus-staging-maven-plugin</artifactId>
391                                         <version>1.6.7</version>
392                                         <extensions>true</extensions>
393                                         <configuration>
394                                                 <nexusUrl>${nexusproxy}</nexusUrl>
395                                                 <stagingProfileId>176c31dfe190a</stagingProfileId>
396                                                 <serverId>ecomp-staging</serverId>
397                                         </configuration>
398                                 </plugin>
399                                 <plugin>
400                                         <groupId>org.jacoco</groupId>
401                                         <artifactId>jacoco-maven-plugin</artifactId>
402                                         <version>${jacoco.version}</version>
403                                         <configuration>
404                                                 <excludes>
405                                                         <exclude>**/gen/**</exclude>
406                                                         <exclude>**/generated-sources/**</exclude>
407                                                         <exclude>**/yang-gen/**</exclude>
408                                                         <exclude>**/pax/**</exclude>
409                                                 </excludes>
410                                         </configuration>
411                                         <executions>
412                                                 <execution>
413                                                         <id>pre-unit-test</id>
414                                                         <goals>
415                                                                 <goal>prepare-agent</goal>
416                                                         </goals>
417                                                         <configuration>
418                                                                 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
419                                                                 <propertyName>surefireArgLine</propertyName>
420                                                         </configuration>
421                                                 </execution>
422                                                 <execution>
423                                                         <id>post-unit-test</id>
424                                                         <phase>test</phase>
425                                                         <goals>
426                                                                 <goal>report</goal>
427                                                         </goals>
428                                                         <configuration>
429                                                                 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
430                                                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
431                                                         </configuration>
432                                                 </execution>
433                                                 <execution>
434                                                         <id>pre-integration-test</id>
435                                                         <phase>pre-integration-test</phase>
436                                                         <goals>
437                                                                 <goal>prepare-agent</goal>
438                                                         </goals>
439                                                         <configuration>
440                                                                 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
441                                                                 <propertyName>failsafeArgLine</propertyName>
442                                                         </configuration>
443                                                 </execution>
444                                                 <execution>
445                                                         <id>post-integration-test</id>
446                                                         <phase>post-integration-test</phase>
447                                                         <goals>
448                                                                 <goal>report</goal>
449                                                         </goals>
450                                                         <configuration>
451                                                                 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
452                                                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
453                                                         </configuration>
454                                                 </execution>
455                                         </executions>
456                                 </plugin>
457                         </plugins>
458                 </pluginManagement>
459         </build>
460
461         <distributionManagement>
462                 <repository>
463                         <id>ecomp-releases</id>
464                         <name>AAF Release Repository</name>
465                         <url>${nexusproxy}${releaseNexusPath}</url>
466                 </repository>
467                 <snapshotRepository>
468                         <id>ecomp-snapshots</id>
469                         <name>AAF Snapshot Repository</name>
470                         <url>${nexusproxy}${snapshotNexusPath}</url>
471                 </snapshotRepository>
472                 <site>
473                         <id>ecomp-site</id>
474                         <url>dav:${nexusproxy}${sitePath}</url>
475                 </site>
476         </distributionManagement>
477
478 </project>