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">
24 <modelVersion>4.0.0</modelVersion>
26 <groupId>org.onap.aaf.authz</groupId>
27 <artifactId>parent</artifactId>
28 <version>2.1.17-SNAPSHOT</version>
30 <artifactId>miscparent</artifactId>
31 <name>AAF Misc Parent</name>
32 <packaging>pom</packaging>
36 <name>Jonathan Gathman</name>
37 <email>jonathan.gathman@att.com</email>
38 <organization>ATT</organization>
40 <role>Architect</role>
41 <role>Lead Developer</role>
45 <name>Sai Gandham</name>
46 <email>sai.gandham@att.com</email>
47 <organization>ATT</organization>
49 <role>Developer</role>
56 <groupId>org.mockito</groupId>
57 <artifactId>mockito-all</artifactId>
62 <groupId>org.powermock</groupId>
63 <artifactId>powermock-module-junit4</artifactId>
67 <groupId>org.powermock</groupId>
68 <artifactId>powermock-api-mockito</artifactId>
72 <groupId>junit</groupId>
73 <artifactId>junit</artifactId>
81 <module>rosetta</module>
82 <module>log4j</module> <!-- note: generates log4j, to avoid Jar conflict -->
85 <!-- ============================================================== -->
86 <!-- Define common plugins and make them available for all modules -->
87 <!-- ============================================================== -->
89 <testSourceDirectory>src/test/java</testSourceDirectory>
95 <inherited>true</inherited>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-compiler-plugin</artifactId>
98 <version>2.3.2</version>
106 <groupId>org.apache.maven.plugins</groupId>
107 <version>2.4</version>
108 <artifactId>maven-jar-plugin</artifactId>
110 <outputDirectory>target</outputDirectory>
113 <Sealed>true</Sealed>
119 <!-- Define the javadoc plugin -->
121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-javadoc-plugin</artifactId>
123 <version>2.10</version>
125 <excludePackageNames>org.opendaylight.*</excludePackageNames>
130 <artifactId>maven-release-plugin</artifactId>
131 <version>2.5.2</version>
133 <goals>-s ${mvn.settings} deploy</goals>
138 <artifactId>maven-assembly-plugin</artifactId>
139 <version>2.5.5</version>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-deploy-plugin</artifactId>
145 <version>2.8.1</version>
153 <groupId>org.apache.maven.plugins</groupId>
154 <artifactId>maven-dependency-plugin</artifactId>
155 <version>2.10</version>
158 <!-- Maven surefire plugin for testing -->
160 <artifactId>maven-surefire-plugin</artifactId>
161 <version>2.17</version>
163 <skipTests>false</skipTests>
165 <include>**/JU*.java</include>
169 <useSystemClassLoader>false</useSystemClassLoader>
173 <!--This plugin's configuration is used to store Eclipse m2e settings
174 only. It has no influence on the Maven build itself. -->
176 <groupId>org.eclipse.m2e</groupId>
177 <artifactId>lifecycle-mapping</artifactId>
178 <version>1.0.0</version>
180 <lifecycleMappingMetadata>
183 <pluginExecutionFilter>
196 </pluginExecutionFilter>
202 </lifecycleMappingMetadata>
206 <groupId>org.jacoco</groupId>
207 <artifactId>jacoco-maven-plugin</artifactId>
208 <version>${jacoco.version}</version>
211 <exclude>**/gen/**</exclude>
212 <exclude>**/generated-sources/**</exclude>
213 <exclude>**/yang-gen/**</exclude>
214 <exclude>**/pax/**</exclude>
219 <id>pre-unit-test</id>
221 <goal>prepare-agent</goal>
224 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
225 <propertyName>surefireArgLine</propertyName>
229 <id>post-unit-test</id>
235 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
236 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
240 <id>pre-integration-test</id>
241 <phase>pre-integration-test</phase>
243 <goal>prepare-agent</goal>
246 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
247 <propertyName>failsafeArgLine</propertyName>
251 <id>post-integration-test</id>
252 <phase>post-integration-test</phase>
257 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
258 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
268 <distributionManagement>
270 <id>ecomp-releases</id>
271 <name>AAF Release Repository</name>
272 <url>${nexusproxy}${releaseNexusPath}</url>
275 <id>ecomp-snapshots</id>
276 <name>AAF Snapshot Repository</name>
277 <url>${nexusproxy}${snapshotNexusPath}</url>
278 </snapshotRepository>
281 <url>dav:${nexusproxy}${sitePath}</url>
283 </distributionManagement>