1 <?xml version="1.0" encoding="UTF-8"?>
3 * ============LICENSE_START====================================================
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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====================================================
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">
25 <groupId>org.onap.aaf.authz</groupId>
26 <artifactId>cadiparent</artifactId>
27 <version>2.7.0-SNAPSHOT</version>
28 <relativePath>..</relativePath>
31 <modelVersion>4.0.0</modelVersion>
32 <artifactId>aaf-cadi-aaf</artifactId>
33 <name>AAF CADI AAF Connection Library</name>
34 <packaging>jar</packaging>
38 <!-- <sonar.skip>true</sonar.skip> -->
39 <jacoco.version>0.7.7.201606060606</jacoco.version>
40 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
41 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
42 <!-- Default Sonar configuration -->
43 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
44 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
45 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
46 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
47 <nexusproxy>https://nexus.onap.org</nexusproxy>
48 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
49 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
50 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
51 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
55 <name>Jonathan Gathman</name>
56 <email>jonathan.gathman@att.com</email>
57 <organization>ATT</organization>
59 <role>Architect</role>
60 <role>Lead Developer</role>
64 <name>Sai Gandham</name>
65 <email>sai.gandham@att.com</email>
66 <organization>ATT</organization>
68 <role>Developer</role>
76 <groupId>org.onap.aaf.authz</groupId>
77 <artifactId>aaf-auth-client</artifactId>
81 <groupId>org.onap.aaf.authz</groupId>
82 <artifactId>aaf-cadi-client</artifactId>
86 <groupId>org.onap.aaf.authz</groupId>
87 <artifactId>aaf-misc-env</artifactId>
91 <groupId>org.onap.aaf.authz</groupId>
92 <artifactId>aaf-cadi-core</artifactId>
96 <groupId>javax.servlet</groupId>
97 <artifactId>javax.servlet-api</artifactId>
98 <scope>provided</scope>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-compiler-plugin</artifactId>
108 <groupId>org.jacoco</groupId>
109 <artifactId>jacoco-maven-plugin</artifactId>
112 <exclude>**/gen/**</exclude>
113 <exclude>**/generated-sources/**</exclude>
114 <exclude>**/yang-gen/**</exclude>
115 <exclude>**/pax/**</exclude>
120 <id>pre-unit-test</id>
122 <goal>prepare-agent</goal>
125 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
126 <propertyName>surefireArgLine</propertyName>
130 <id>post-unit-test</id>
136 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
137 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
141 <id>pre-integration-test</id>
142 <phase>pre-integration-test</phase>
144 <goal>prepare-agent</goal>
147 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
148 <propertyName>failsafeArgLine</propertyName>
152 <id>post-integration-test</id>
153 <phase>post-integration-test</phase>
158 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
159 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
166 <artifactId>maven-assembly-plugin</artifactId>
168 <classifier>tests</classifier>
171 <mainClass>org.onap.aaf.cadi.configure.Agent</mainClass>
174 <Sealed>true</Sealed>
181 <phase>package</phase>
187 <descriptor>src/assemble/cadi-aaf.xml</descriptor>
196 <distributionManagement>
198 <id>ecomp-releases</id>
199 <name>AAF Release Repository</name>
200 <url>${nexusproxy}${releaseNexusPath}</url>
203 <id>ecomp-snapshots</id>
204 <name>AAF Snapshot Repository</name>
205 <url>${nexusproxy}${snapshotNexusPath}</url>
206 </snapshotRepository>
209 <url>dav:${nexusproxy}${sitePath}</url>
211 </distributionManagement>