blob: bcd2d257335784b4cd0ee45b42e7b7f44d6b7a6b [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 Gandham3a70e912018-04-12 22:16:21 +000074 <!--<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>
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>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700217 </plugin>
Sai Gandhame01703c2018-03-26 22:57:09 +0000218 <plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500219 <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>
IanHowell3901cf82018-04-03 11:24:27 -0500230 <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>
IanHowelle6123772018-04-03 15:26:47 -0500248 <skipTests>false</skipTests>
249 <includes>
250 <include>**/JU*.java</include>
251 </includes>
252 <excludes>
253 </excludes>
IanHowell3901cf82018-04-03 11:24:27 -0500254 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
255 <propertyName>surefireArgLine</propertyName>
256 </configuration>
257 </execution>
258 <execution>
259 <id>post-unit-test</id>
260 <phase>test</phase>
261 <goals>
262 <goal>report</goal>
263 </goals>
264 <configuration>
265 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
266 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
267 </configuration>
268 </execution>
269 <execution>
270 <id>pre-integration-test</id>
271 <phase>pre-integration-test</phase>
272 <goals>
273 <goal>prepare-agent</goal>
274 </goals>
275 <configuration>
276 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
277 <propertyName>failsafeArgLine</propertyName>
278 </configuration>
279 </execution>
280 <execution>
281 <id>post-integration-test</id>
282 <phase>post-integration-test</phase>
283 <goals>
284 <goal>report</goal>
285 </goals>
286 <configuration>
287 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
288 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
289 </configuration>
290 </execution>
291 </executions>
292 </plugin>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700293 </plugins>
294 </pluginManagement>
295 </build>
296
Sai Gandhame01703c2018-03-26 22:57:09 +0000297 <distributionManagement>
298 <repository>
299 <id>ecomp-releases</id>
300 <name>AAF Release Repository</name>
301 <url>${nexusproxy}${releaseNexusPath}</url>
302 </repository>
Sai Gandham6d8487a2018-03-27 18:05:26 +0000303 <snapshotRepository>
304 <id>ecomp-snapshots</id>
305 <name>AAF Snapshot Repository</name>
306 <url>${nexusproxy}${snapshotNexusPath}</url>
307 </snapshotRepository>
Sai Gandhame01703c2018-03-26 22:57:09 +0000308 <site>
309 <id>ecomp-site</id>
310 <url>dav:${nexusproxy}${sitePath}</url>
311 </site>
312 </distributionManagement>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700313</project>