1 <!--* ============LICENSE_START====================================================
2 * ===========================================================================
4 * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
5 * ===========================================================================
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 * ============LICENSE_END====================================================
19 <project xmlns="http://maven.apache.org/POM/4.0.0"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22 <modelVersion>4.0.0</modelVersion>
23 <groupId>org.onap.aaf.authz</groupId>
24 <artifactId>parent</artifactId>
25 <version>2.1.10-SNAPSHOT</version>
26 <name>aaf-authz</name>
27 <packaging>pom</packaging>
30 <groupId>org.onap.oparent</groupId>
31 <artifactId>oparent</artifactId>
32 <version>1.2.1</version>
36 <nexusproxy>https://nexus.onap.org</nexusproxy>
37 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
38 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
39 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
40 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
41 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
43 <maven.test.failure.ignore>false</maven.test.failure.ignore>
45 <jacoco.version>0.7.7.201606060606</jacoco.version>
46 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
47 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
48 <!-- Default Sonar configuration -->
49 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
50 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
51 <!-- Note: This list should match jacoco-maven-plugin's exclusion list
53 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
54 <nexusproxy>https://nexus.onap.org</nexusproxy>
55 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
56 <powermock.version>1.5.1</powermock.version>
57 <mockito.version>1.9.5</mockito.version>
58 <project.interfaceVersion>${project.version}</project.interfaceVersion>
59 <project.jettyVersion>9.4.12.v20180830</project.jettyVersion>
60 <project.cassVersion>3.6.0</project.cassVersion>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-deploy-plugin</artifactId>
73 <groupId>org.sonatype.plugins</groupId>
74 <artifactId>nexus-staging-maven-plugin</artifactId>
75 <extensions>true</extensions>
77 <nexusUrl>${nexusproxy}</nexusUrl>
78 <stagingProfileId>176c31dfe190a</stagingProfileId>
79 <serverId>ecomp-staging</serverId>
83 <groupId>org.sonarsource.scanner.maven</groupId>
84 <artifactId>sonar-maven-plugin</artifactId>
87 <groupId>org.jacoco</groupId>
88 <artifactId>jacoco-maven-plugin</artifactId>
91 <exclude>**/gen/**</exclude>
92 <exclude>**/generated-sources/**</exclude>
93 <exclude>**/yang-gen/**</exclude>
94 <exclude>**/pax/**</exclude>
99 <id>pre-unit-test</id>
101 <goal>prepare-agent</goal>
104 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
105 <propertyName>surefireArgLine</propertyName>
109 <id>post-unit-test</id>
115 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
116 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
120 <id>pre-integration-test</id>
121 <phase>pre-integration-test</phase>
123 <goal>prepare-agent</goal>
126 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
127 <propertyName>failsafeArgLine</propertyName>
131 <id>post-integration-test</id>
132 <phase>post-integration-test</phase>
137 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
138 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
147 <module>auth-client</module>
148 <module>misc</module>
149 <module>cadi</module>
150 <module>auth</module>
153 <dependencyManagement>
156 <groupId>org.onap.aaf.authz</groupId>
157 <artifactId>aaf-misc-env</artifactId>
158 <version>${project.version}</version>
162 <groupId>org.onap.aaf.authz</groupId>
163 <artifactId>aaf-misc-log4j</artifactId>
164 <version>${project.version}</version>
168 <groupId>org.onap.aaf.authz</groupId>
169 <artifactId>aaf-misc-rosetta</artifactId>
170 <version>${project.version}</version>
174 <groupId>org.onap.aaf.authz</groupId>
175 <artifactId>aaf-misc-xgen</artifactId>
176 <version>${project.version}</version>
186 <groupId>org.onap.aaf.authz</groupId>
187 <artifactId>aaf-auth-client</artifactId>
188 <version>${project.version}</version>
192 <groupId>org.onap.aaf.authz</groupId>
193 <artifactId>aaf-auth-core</artifactId>
194 <version>${project.version}</version>
198 <groupId>org.onap.aaf.authz</groupId>
199 <artifactId>aaf-auth-cass</artifactId>
200 <version>${project.version}</version>
204 <groupId>org.onap.aaf.authz</groupId>
205 <artifactId>aaf-auth-cmd</artifactId>
206 <version>${project.version}</version>
210 <groupId>org.onap.aaf.authz</groupId>
211 <artifactId>aaf-auth-oauth</artifactId>
212 <version>${project.version}</version>
216 <groupId>org.onap.aaf.authz</groupId>
217 <artifactId>aaf-auth-deforg</artifactId>
218 <version>${project.version}</version>
222 <groupId>org.onap.aaf.authz</groupId>
223 <artifactId>aaf-cadi-core</artifactId>
224 <version>${project.version}</version>
228 <groupId>org.onap.aaf.authz</groupId>
229 <artifactId>aaf-cadi-client</artifactId>
230 <version>${project.version}</version>
234 <groupId>org.onap.aaf.authz</groupId>
235 <artifactId>aaf-cadi-aaf</artifactId>
236 <version>${project.version}</version>
239 <groupId>org.apache.cassandra</groupId>
240 <artifactId>cassandra-all</artifactId>
246 <groupId>org.onap.aaf.authz</groupId>
247 <artifactId>aaf-cadi-jetty</artifactId>
248 <version>${project.version}</version>
252 <groupId>org.onap.aaf.authz</groupId>
253 <artifactId>aaf-cadi-cass</artifactId>
254 <version>${project.version}</version>
255 </dependency><dependency>
256 <groupId>javax.servlet</groupId>
257 <artifactId>javax.servlet-api</artifactId>
258 <version>3.0.1</version>
261 <!-- JettyVersion is partly covered in "OParent"
263 <groupId>org.eclipse.jetty</groupId>
264 <artifactId>jetty-servlet</artifactId>
265 <version>${project.jettyVersion}</version>
266 </dependency><dependency>
267 <groupId>org.eclipse.jetty</groupId>
268 <artifactId>jetty-server</artifactId>
269 <version>${project.jettyVersion}</version>
273 <groupId>org.eclipse.jetty</groupId>
274 <artifactId>jetty-http</artifactId>
275 <version>${project.jettyVersion}</version>
279 <groupId>org.eclipse.jetty</groupId>
280 <artifactId>jetty-io</artifactId>
281 <version>${project.jettyVersion}</version>
285 <groupId>org.eclipse.jetty</groupId>
286 <artifactId>jetty-security</artifactId>
287 <version>${project.jettyVersion}</version>
292 <groupId>org.eclipse.jetty</groupId>
293 <artifactId>jetty-util</artifactId>
294 <version>${project.jettyVersion}</version>
299 <groupId>org.slf4j</groupId>
300 <artifactId>slf4j-api</artifactId>
301 <version>1.7.5</version>
305 <groupId>com.datastax.cassandra</groupId>
306 <artifactId>cassandra-all</artifactId>
307 <version>${project.cassVersion}</version>
310 <groupId>org.slf4j</groupId>
311 <artifactId>slf4j-log4j12</artifactId>
314 <groupId>log4j</groupId>
315 <artifactId>log4j</artifactId>
321 <groupId>com.datastax.cassandra</groupId>
322 <artifactId>cassandra-driver-core</artifactId>
323 <version>${project.cassVersion}</version>
326 <groupId>org.slf4j</groupId>
327 <artifactId>slf4j-log4j12</artifactId>
330 <groupId>log4j</groupId>
331 <artifactId>log4j</artifactId>
334 <groupId>com.google.guava</groupId>
335 <artifactId>guava</artifactId>
339 <!-- Note: Ensure DataStax uses more up-to-date netty handler -->
341 <groupId>io.netty</groupId>
342 <artifactId>netty-handler</artifactId>
343 <version>${project.nettyVersion}</version>
347 <groupId>org.slf4j</groupId>
348 <artifactId>slf4j-log4j12</artifactId>
349 <version>1.7.5</version>
353 <groupId>javax.mail</groupId>
354 <artifactId>mail</artifactId>
355 <version>1.4.7</version>
359 <groupId>org.mockito</groupId>
360 <artifactId>mockito-all</artifactId>
361 <version>${mockito.version}</version>
366 <groupId>org.powermock</groupId>
367 <artifactId>powermock-module-junit4</artifactId>
368 <version>${powermock.version}</version>
373 <groupId>org.powermock</groupId>
374 <artifactId>powermock-api-mockito</artifactId>
375 <version>${powermock.version}</version>
380 <groupId>log4j</groupId>
381 <artifactId>log4j</artifactId>
382 <version>1.2.17</version>
386 <groupId>junit</groupId>
387 <artifactId>junit</artifactId>
388 <version>4.10</version>
393 </dependencyManagement>
399 <distributionManagement>
401 <id>ecomp-releases</id>
402 <name>AAF Release Repository</name>
403 <url>${nexusproxy}${releaseNexusPath}</url>
406 <id>ecomp-snapshots</id>
407 <name>AAF Snapshot Repository</name>
408 <url>${nexusproxy}${snapshotNexusPath}</url>
409 </snapshotRepository>
412 <url>dav:${nexusproxy}${sitePath}</url>
414 </distributionManagement>