blob: c945b7394e7b7f000958f85d2c19528ca1416c7f [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>
Sai Gandhamc83c6332018-04-05 16:08:24 -050027 <version>2.1.0-SNAPSHOT</version>
Instrumentalac1e1ec2018-03-26 13:37:04 -070028 <relativePath>..</relativePath>
29 </parent>
30
31 <modelVersion>4.0.0</modelVersion>
32 <artifactId>aaf-misc-log4j</artifactId>
33 <name>AAF Misc Log4J</name>
34 <packaging>jar</packaging>
35
36 <developers>
37 <developer>
38 <name>Jonathan Gathman</name>
39 <email>jonathan.gathman@att.com</email>
40 <organization>ATT</organization>
41 <roles>
42 <role>Architect</role>
43 <role>Lead Developer</role>
44 </roles>
45 </developer>
46 <developer>
47 <name>Gabe Maurer</name>
48 <email>gabe.maurer@att.com</email>
49 <organization>ATT</organization>
50 <roles>
51 <role>Developer</role>
52 </roles>
53 </developer>
54 <developer>
55 <name>Ian Howell</name>
56 <email>ian.howell@att.com</email>
57 <organization>ATT</organization>
58 <roles>
59 <role>Developer</role>
60 </roles>
61 </developer>
Sai Gandhame01703c2018-03-26 22:57:09 +000062 <developer>
63 <name>Sai Gandham</name>
64 <email>sai.gandham@att.com</email>
65 <organization>ATT</organization>
66 <roles>
67 <role>Developer</role>
68 </roles>
69 </developer>
Instrumentalac1e1ec2018-03-26 13:37:04 -070070 </developers>
IanHowell3901cf82018-04-03 11:24:27 -050071
Sai Gandhame01703c2018-03-26 22:57:09 +000072 <properties>
Sai Gandham61f8fdf2018-04-03 12:07:07 -050073 <!-- SONAR -->
Sai Gandham1ef69d22018-04-03 16:25:33 -050074 <sonar.skip>true</sonar.skip>
Sai Gandham61f8fdf2018-04-03 12:07:07 -050075 <jacoco.version>0.7.7.201606060606</jacoco.version>
76 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
77 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
78 <!-- Default Sonar configuration -->
79 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
80 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
81 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
82 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
IanHowell3901cf82018-04-03 11:24:27 -050083
Sai Gandhame01703c2018-03-26 22:57:09 +000084 <nexusproxy>https://nexus.onap.org</nexusproxy>
85 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
86 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
87 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Sai Gandham30dca6e2018-04-09 21:22:48 +000088 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
Sai Gandhame01703c2018-03-26 22:57:09 +000089 </properties>
IanHowell3901cf82018-04-03 11:24:27 -050090
Instrumentalac1e1ec2018-03-26 13:37:04 -070091 <dependencies>
92 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000093 <groupId>org.onap.aaf.authz</groupId>
Instrumentalac1e1ec2018-03-26 13:37:04 -070094 <artifactId>aaf-misc-env</artifactId>
95 <version>${project.version}</version>
96 </dependency>
Instrumentalac1e1ec2018-03-26 13:37:04 -070097 </dependencies>
98
Sai Gandham61f8fdf2018-04-03 12:07:07 -050099<!-- ============================================================== -->
100 <!-- Define common plugins and make them available for all modules -->
101 <!-- ============================================================== -->
Instrumentalac1e1ec2018-03-26 13:37:04 -0700102 <build>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500103 <testSourceDirectory>src/test/java</testSourceDirectory>
104 <plugins>
105 </plugins>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700106 <pluginManagement>
107 <plugins>
108 <plugin>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500109 <inherited>true</inherited>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-compiler-plugin</artifactId>
112 <version>2.3.2</version>
113 <configuration>
114 <source>1.7</source>
115 <target>1.7</target>
116 </configuration>
117 </plugin>
118
119 <plugin>
120 <groupId>org.apache.maven.plugins</groupId>
121 <version>2.4</version>
122 <artifactId>maven-jar-plugin</artifactId>
123 <configuration>
124 <outputDirectory>target</outputDirectory>
125 <archive>
126 <manifestEntries>
127 <Sealed>true</Sealed>
128 </manifestEntries>
129 </archive>
130 </configuration>
131 </plugin>
132
133 <!-- Define the javadoc plugin -->
134 <plugin>
135 <groupId>org.apache.maven.plugins</groupId>
136 <artifactId>maven-javadoc-plugin</artifactId>
137 <version>2.10</version>
138 <configuration>
139 <excludePackageNames>org.opendaylight.*</excludePackageNames>
140 </configuration>
141 </plugin>
142
143 <plugin>
144 <artifactId>maven-release-plugin</artifactId>
145 <version>2.5.2</version>
146 <configuration>
147 <goals>-s ${mvn.settings} deploy</goals>
148 </configuration>
149 </plugin>
150
151 <plugin>
152 <artifactId>maven-assembly-plugin</artifactId>
153 <version>2.5.5</version>
154 </plugin>
155
156 <plugin>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700157 <groupId>org.apache.maven.plugins</groupId>
158 <artifactId>maven-deploy-plugin</artifactId>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500159 <version>2.8.1</version>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700160 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -0500161 <skip>false</skip>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700162 </configuration>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500163
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>
177 </configuration>
178 </plugin>
179
180 <!--This plugin's configuration is used to store Eclipse m2e settings
181 only. It has no influence on the Maven build itself. -->
182 <plugin>
183 <groupId>org.eclipse.m2e</groupId>
184 <artifactId>lifecycle-mapping</artifactId>
185 <version>1.0.0</version>
186 <configuration>
187 <lifecycleMappingMetadata>
188 <pluginExecutions>
189 <pluginExecution>
190 <pluginExecutionFilter>
191 <groupId>
192 org.codehaus.mojo
193 </groupId>
194 <artifactId>
195 jaxb2-maven-plugin
196 </artifactId>
197 <versionRange>
198 [1.3,)
199 </versionRange>
200 <goals>
201 <goal>xjc</goal>
202 </goals>
203 </pluginExecutionFilter>
204 <action>
205 <ignore />
206 </action>
207 </pluginExecution>
208 </pluginExecutions>
209 </lifecycleMappingMetadata>
210 </configuration>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700211 </plugin>
Sai Gandhame01703c2018-03-26 22:57:09 +0000212 <plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500213 <groupId>org.sonatype.plugins</groupId>
214 <artifactId>nexus-staging-maven-plugin</artifactId>
215 <version>1.6.7</version>
216 <extensions>true</extensions>
217 <configuration>
218 <nexusUrl>${nexusproxy}</nexusUrl>
219 <stagingProfileId>176c31dfe190a</stagingProfileId>
220 <serverId>ecomp-staging</serverId>
221 </configuration>
222 </plugin>
223 <plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500224 <groupId>org.jacoco</groupId>
225 <artifactId>jacoco-maven-plugin</artifactId>
226 <version>${jacoco.version}</version>
227 <configuration>
228 <excludes>
229 <exclude>**/gen/**</exclude>
230 <exclude>**/generated-sources/**</exclude>
231 <exclude>**/yang-gen/**</exclude>
232 <exclude>**/pax/**</exclude>
233 </excludes>
234 </configuration>
235 <executions>
236 <execution>
237 <id>pre-unit-test</id>
238 <goals>
239 <goal>prepare-agent</goal>
240 </goals>
241 <configuration>
IanHowelle6123772018-04-03 15:26:47 -0500242 <skipTests>false</skipTests>
243 <includes>
244 <include>**/JU*.java</include>
245 </includes>
246 <excludes>
247 </excludes>
IanHowell3901cf82018-04-03 11:24:27 -0500248 <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>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700287 </plugins>
288 </pluginManagement>
289 </build>
290
Sai Gandhame01703c2018-03-26 22:57:09 +0000291 <distributionManagement>
292 <repository>
293 <id>ecomp-releases</id>
294 <name>AAF Release Repository</name>
295 <url>${nexusproxy}${releaseNexusPath}</url>
296 </repository>
Sai Gandham6d8487a2018-03-27 18:05:26 +0000297 <snapshotRepository>
298 <id>ecomp-snapshots</id>
299 <name>AAF Snapshot Repository</name>
300 <url>${nexusproxy}${snapshotNexusPath}</url>
301 </snapshotRepository>
Sai Gandhame01703c2018-03-26 22:57:09 +0000302 <site>
303 <id>ecomp-site</id>
304 <url>dav:${nexusproxy}${sitePath}</url>
305 </site>
306 </distributionManagement>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700307</project>