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>miscparent</artifactId>
27 <version>2.1.13-SNAPSHOT</version>
28 <relativePath>..</relativePath>
31 <modelVersion>4.0.0</modelVersion>
32 <artifactId>aaf-misc-rosetta</artifactId>
33 <name>AAF Misc Rosetta</name>
34 <packaging>jar</packaging>
38 <name>Jonathan Gathman</name>
39 <email>jonathan.gathman@att.com</email>
40 <organization>ATT</organization>
42 <role>Architect</role>
43 <role>Lead Developer</role>
47 <name>Gabe Maurer</name>
48 <email>gabe.maurer@att.com</email>
49 <organization>ATT</organization>
51 <role>Developer</role>
55 <name>Ian Howell</name>
56 <email>ian.howell@att.com</email>
57 <organization>ATT</organization>
59 <role>Developer</role>
63 <name>Sai Gandham</name>
64 <email>sai.gandham@att.com</email>
65 <organization>ATT</organization>
67 <role>Developer</role>
74 <scijava.jvm.version>1.8</scijava.jvm.version>
75 <!-- <sonar.skip>true</sonar.skip> -->
76 <jacoco.version>0.7.7.201606060606</jacoco.version>
77 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
78 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
79 <!-- Default Sonar configuration -->
80 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
81 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
82 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
83 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
85 <nexusproxy>https://nexus.onap.org</nexusproxy>
86 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
87 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
88 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
89 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
94 <groupId>org.onap.aaf.authz</groupId>
95 <artifactId>aaf-misc-env</artifactId>
96 <version>${project.version}</version>
102 <!-- ============================================================== -->
103 <!-- Define common plugins and make them available for all modules -->
104 <!-- ============================================================== -->
106 <testSourceDirectory>src/test/java</testSourceDirectory>
110 <inherited>true</inherited>
111 <groupId>org.apache.maven.plugins</groupId>
112 <artifactId>maven-compiler-plugin</artifactId>
120 <groupId>org.jvnet.jaxb2.maven2</groupId>
121 <artifactId>maven-jaxb2-plugin</artifactId>
122 <version>0.8.2</version>
126 <goal>generate</goal>
131 <schemaDirectory>src/main/xsd</schemaDirectory>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-jar-plugin</artifactId>
139 <outputDirectory>target</outputDirectory>
142 <Sealed>true</Sealed>
148 <!-- Define the javadoc plugin -->
150 <groupId>org.apache.maven.plugins</groupId>
151 <artifactId>maven-javadoc-plugin</artifactId>
153 <excludePackageNames>org.opendaylight.*</excludePackageNames>
158 <artifactId>maven-release-plugin</artifactId>
160 <goals>-s ${mvn.settings} deploy</goals>
165 <artifactId>maven-assembly-plugin</artifactId>
169 <groupId>org.apache.maven.plugins</groupId>
170 <artifactId>maven-deploy-plugin</artifactId>
178 <groupId>org.apache.maven.plugins</groupId>
179 <artifactId>maven-dependency-plugin</artifactId>
182 <!-- Maven surefire plugin for testing -->
184 <artifactId>maven-surefire-plugin</artifactId>
186 <skipTests>false</skipTests>
188 <include>**/JU*.java</include>
195 <!--This plugin's configuration is used to store Eclipse m2e settings
196 only. It has no influence on the Maven build itself. -->
198 <groupId>org.eclipse.m2e</groupId>
199 <artifactId>lifecycle-mapping</artifactId>
201 <lifecycleMappingMetadata>
204 <pluginExecutionFilter>
217 </pluginExecutionFilter>
223 </lifecycleMappingMetadata>
227 <groupId>org.sonatype.plugins</groupId>
228 <artifactId>nexus-staging-maven-plugin</artifactId>
229 <extensions>true</extensions>
231 <nexusUrl>${nexusproxy}</nexusUrl>
232 <stagingProfileId>176c31dfe190a</stagingProfileId>
233 <serverId>ecomp-staging</serverId>
237 <groupId>org.jacoco</groupId>
238 <artifactId>jacoco-maven-plugin</artifactId>
241 <exclude>**/gen/**</exclude>
242 <exclude>**/generated-sources/**</exclude>
243 <exclude>**/yang-gen/**</exclude>
244 <exclude>**/pax/**</exclude>
249 <id>pre-unit-test</id>
251 <goal>prepare-agent</goal>
254 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
255 <propertyName>surefireArgLine</propertyName>
259 <id>post-unit-test</id>
265 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
266 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
270 <id>pre-integration-test</id>
271 <phase>pre-integration-test</phase>
273 <goal>prepare-agent</goal>
276 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
277 <propertyName>failsafeArgLine</propertyName>
281 <id>post-integration-test</id>
282 <phase>post-integration-test</phase>
287 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
288 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
296 <distributionManagement>
298 <id>ecomp-releases</id>
299 <name>AAF Release Repository</name>
300 <url>${nexusproxy}${releaseNexusPath}</url>
303 <id>ecomp-snapshots</id>
304 <name>AAF Snapshot Repository</name>
305 <url>${nexusproxy}${snapshotNexusPath}</url>
306 </snapshotRepository>
309 <url>dav:${nexusproxy}${sitePath}</url>
311 </distributionManagement>