blob: 0aa076cc5107140350d3cb0a991b184041cb0dac [file] [log] [blame]
Instrumentalac1e1ec2018-03-26 13:37:04 -07001<?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"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <parent>
Sai Gandham83fc0252018-04-09 16:28:48 +000025 <groupId>org.onap.aaf.authz</groupId>
26 <artifactId>miscparent</artifactId>
Instrumental2c79dd12018-11-09 07:56:25 -060027 <version>2.1.8-SNAPSHOT</version>
Instrumentalac1e1ec2018-03-26 13:37:04 -070028 <relativePath>..</relativePath>
29 </parent>
30
31 <modelVersion>4.0.0</modelVersion>
32 <artifactId>aaf-misc-env</artifactId>
33 <name>AAF Misc Env</name>
34 <packaging>jar</packaging>
35
Instrumental9f52db12018-08-31 09:53:21 -050036 <properties>
37 <!-- SONAR -->
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
46 below -->
47 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
48 <nexusproxy>https://nexus.onap.org</nexusproxy>
49 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
50 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
51 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
52 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
53 </properties>
54
Instrumentalac1e1ec2018-03-26 13:37:04 -070055 <developers>
56 <developer>
57 <name>Jonathan Gathman</name>
58 <email>jonathan.gathman@att.com</email>
59 <organization>ATT</organization>
60 <roles>
61 <role>Architect</role>
62 <role>Lead Developer</role>
63 </roles>
64 </developer>
65 <developer>
66 <name>Gabe Maurer</name>
67 <email>gabe.maurer@att.com</email>
68 <organization>ATT</organization>
69 <roles>
70 <role>Developer</role>
71 </roles>
72 </developer>
73 <developer>
74 <name>Ian Howell</name>
75 <email>ian.howell@att.com</email>
76 <organization>ATT</organization>
77 <roles>
78 <role>Developer</role>
79 </roles>
80 </developer>
Sai Gandhame01703c2018-03-26 22:57:09 +000081 <developer>
82 <name>Sai Gandham</name>
83 <email>sai.gandham@att.com</email>
84 <organization>ATT</organization>
85 <roles>
86 <role>Developer</role>
87 </roles>
88 </developer>
Instrumentalac1e1ec2018-03-26 13:37:04 -070089 </developers>
IanHowell3901cf82018-04-03 11:24:27 -050090
Sai Gandham61f8fdf2018-04-03 12:07:07 -050091 <!-- ============================================================== -->
92 <!-- Define common plugins and make them available for all modules -->
93 <!-- ============================================================== -->
Sai Gandhame01703c2018-03-26 22:57:09 +000094 <build>
Sai Gandham61f8fdf2018-04-03 12:07:07 -050095 <testSourceDirectory>src/test/java</testSourceDirectory>
96 <plugins>
97 </plugins>
98 <pluginManagement>
99 <plugins>
100 <plugin>
101 <inherited>true</inherited>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-compiler-plugin</artifactId>
104 <version>2.3.2</version>
IanHowell3901cf82018-04-03 11:24:27 -0500105 <configuration>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500106 <source>1.7</source>
107 <target>1.7</target>
IanHowell3901cf82018-04-03 11:24:27 -0500108 </configuration>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500109 </plugin>
110
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <version>2.4</version>
114 <artifactId>maven-jar-plugin</artifactId>
IanHowell3901cf82018-04-03 11:24:27 -0500115 <configuration>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500116 <outputDirectory>target</outputDirectory>
117 <archive>
118 <manifestEntries>
119 <Sealed>true</Sealed>
120 </manifestEntries>
121 </archive>
IanHowell3901cf82018-04-03 11:24:27 -0500122 </configuration>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500123 </plugin>
124
125 <!-- Define the javadoc plugin -->
126 <plugin>
127 <groupId>org.apache.maven.plugins</groupId>
128 <artifactId>maven-javadoc-plugin</artifactId>
129 <version>2.10</version>
IanHowell3901cf82018-04-03 11:24:27 -0500130 <configuration>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500131 <excludePackageNames>org.opendaylight.*</excludePackageNames>
IanHowell3901cf82018-04-03 11:24:27 -0500132 </configuration>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500133 </plugin>
134
135 <plugin>
136 <artifactId>maven-release-plugin</artifactId>
137 <version>2.5.2</version>
IanHowell3901cf82018-04-03 11:24:27 -0500138 <configuration>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500139 <goals>-s ${mvn.settings} deploy</goals>
IanHowelle6123772018-04-03 15:26:47 -0500140 <skipTests>false</skipTests>
141 <includes>
142 <include>**/JU*.java</include>
143 </includes>
144 <excludes>
145 </excludes>
146 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
147 <propertyName>surefireArgLine</propertyName>
IanHowell3901cf82018-04-03 11:24:27 -0500148 </configuration>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500149 </plugin>
150
151 <plugin>
152 <artifactId>maven-assembly-plugin</artifactId>
153 <version>2.5.5</version>
154 </plugin>
155
156 <plugin>
157 <groupId>org.apache.maven.plugins</groupId>
158 <artifactId>maven-deploy-plugin</artifactId>
159 <version>2.8.1</version>
160 <configuration>
161 <skip>false</skip>
162 </configuration>
163
164 </plugin>
165
166 <plugin>
167 <groupId>org.apache.maven.plugins</groupId>
168 <artifactId>maven-dependency-plugin</artifactId>
169 <version>2.10</version>
170 </plugin>
171
172 <!-- Maven surefire plugin for testing -->
173 <plugin>
174 <artifactId>maven-surefire-plugin</artifactId>
175 <version>2.17</version>
176 <configuration>
Sai Gandham3a70e912018-04-12 22:16:21 +0000177 <skipTests>false</skipTests>
178 <includes>
179 <include>**/JU*.java</include>
180 </includes>
181 <excludes>
182 </excludes>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500183 </configuration>
184 </plugin>
185
186 <!--This plugin's configuration is used to store Eclipse m2e settings
187 only. It has no influence on the Maven build itself. -->
188 <plugin>
189 <groupId>org.eclipse.m2e</groupId>
190 <artifactId>lifecycle-mapping</artifactId>
191 <version>1.0.0</version>
192 <configuration>
193 <lifecycleMappingMetadata>
194 <pluginExecutions>
195 <pluginExecution>
196 <pluginExecutionFilter>
197 <groupId>
198 org.codehaus.mojo
199 </groupId>
200 <artifactId>
201 jaxb2-maven-plugin
202 </artifactId>
203 <versionRange>
204 [1.3,)
205 </versionRange>
206 <goals>
207 <goal>xjc</goal>
208 </goals>
209 </pluginExecutionFilter>
210 <action>
211 <ignore />
212 </action>
213 </pluginExecution>
214 </pluginExecutions>
215 </lifecycleMappingMetadata>
216 </configuration>
217 </plugin>
218 <plugin>
219 <groupId>org.sonatype.plugins</groupId>
220 <artifactId>nexus-staging-maven-plugin</artifactId>
221 <version>1.6.7</version>
222 <extensions>true</extensions>
223 <configuration>
224 <nexusUrl>${nexusproxy}</nexusUrl>
225 <stagingProfileId>176c31dfe190a</stagingProfileId>
226 <serverId>ecomp-staging</serverId>
227 </configuration>
228 </plugin>
229 <plugin>
230 <groupId>org.jacoco</groupId>
231 <artifactId>jacoco-maven-plugin</artifactId>
232 <version>${jacoco.version}</version>
233 <configuration>
234 <excludes>
235 <exclude>**/gen/**</exclude>
236 <exclude>**/generated-sources/**</exclude>
237 <exclude>**/yang-gen/**</exclude>
238 <exclude>**/pax/**</exclude>
239 </excludes>
240 </configuration>
241 <executions>
242 <execution>
243 <id>pre-unit-test</id>
244 <goals>
245 <goal>prepare-agent</goal>
246 </goals>
247 <configuration>
248 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
249 <propertyName>surefireArgLine</propertyName>
250 </configuration>
251 </execution>
252 <execution>
253 <id>post-unit-test</id>
254 <phase>test</phase>
255 <goals>
256 <goal>report</goal>
257 </goals>
258 <configuration>
259 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
260 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
261 </configuration>
262 </execution>
263 <execution>
264 <id>pre-integration-test</id>
265 <phase>pre-integration-test</phase>
266 <goals>
267 <goal>prepare-agent</goal>
268 </goals>
269 <configuration>
270 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
271 <propertyName>failsafeArgLine</propertyName>
272 </configuration>
273 </execution>
274 <execution>
275 <id>post-integration-test</id>
276 <phase>post-integration-test</phase>
277 <goals>
278 <goal>report</goal>
279 </goals>
280 <configuration>
281 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
282 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
283 </configuration>
284 </execution>
285 </executions>
286 </plugin>
287 </plugins>
288 </pluginManagement>
289 </build>
IanHowell3901cf82018-04-03 11:24:27 -0500290
Instrumentalac1e1ec2018-03-26 13:37:04 -0700291 <dependencies>
292 <dependency>
293 <groupId>log4j</groupId>
294 <artifactId>log4j</artifactId>
295 <scope>compile</scope> <!-- Provides scope only, in case other users prefer another Logging Implementation -->
296 </dependency>
Instrumental9f52db12018-08-31 09:53:21 -0500297
Sai Gandham3a70e912018-04-12 22:16:21 +0000298 <dependency>
299 <groupId>org.mockito</groupId>
300 <artifactId>mockito-all</artifactId>
Sai Gandham3a70e912018-04-12 22:16:21 +0000301 <scope>test</scope>
302 </dependency>
303
304 <dependency>
305 <groupId>org.powermock</groupId>
306 <artifactId>powermock-module-junit4</artifactId>
Sai Gandham3a70e912018-04-12 22:16:21 +0000307 <scope>test</scope>
308 </dependency>
309 <dependency>
310 <groupId>org.powermock</groupId>
311 <artifactId>powermock-api-mockito</artifactId>
Sai Gandham3a70e912018-04-12 22:16:21 +0000312 <scope>test</scope>
313 </dependency>
314
315 <dependency>
316 <groupId>junit</groupId>
317 <artifactId>junit</artifactId>
Sai Gandham3a70e912018-04-12 22:16:21 +0000318 <scope>test</scope>
319 </dependency>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700320 </dependencies>
IanHowell3901cf82018-04-03 11:24:27 -0500321
322
Sai Gandhame01703c2018-03-26 22:57:09 +0000323 <distributionManagement>
324 <repository>
325 <id>ecomp-releases</id>
326 <name>AAF Release Repository</name>
327 <url>${nexusproxy}${releaseNexusPath}</url>
328 </repository>
Sai Gandham6d8487a2018-03-27 18:05:26 +0000329 <snapshotRepository>
330 <id>ecomp-snapshots</id>
331 <name>AAF Snapshot Repository</name>
332 <url>${nexusproxy}${snapshotNexusPath}</url>
333 </snapshotRepository>
Sai Gandhame01703c2018-03-26 22:57:09 +0000334 <site>
335 <id>ecomp-site</id>
336 <url>dav:${nexusproxy}${sitePath}</url>
337 </site>
338 </distributionManagement>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700339</project>
340