blob: 7bfc1bce683509f21eaeb2693f134c4bedb60177 [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"
Instrumentale9ae0482019-08-02 14:46:27 -050023 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <parent>
25 <groupId>org.onap.aaf.authz</groupId>
26 <artifactId>miscparent</artifactId>
Instrumental54f1bd22019-08-06 17:34:04 -050027 <version>2.1.16-SNAPSHOT</version>
Instrumentale9ae0482019-08-02 14:46:27 -050028 <relativePath>..</relativePath>
29 </parent>
Instrumentalac1e1ec2018-03-26 13:37:04 -070030
Instrumentale9ae0482019-08-02 14:46:27 -050031 <modelVersion>4.0.0</modelVersion>
32 <artifactId>aaf-misc-log4j</artifactId>
33 <name>AAF Misc Log4J</name>
34 <packaging>jar</packaging>
Instrumentalac1e1ec2018-03-26 13:37:04 -070035
Instrumentale9ae0482019-08-02 14:46:27 -050036 <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>
62 <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>
70 </developers>
IanHowell3901cf82018-04-03 11:24:27 -050071
Instrumentale9ae0482019-08-02 14:46:27 -050072 <properties>
73 <!-- SONAR -->
74 <!--<sonar.skip>true</sonar.skip> -->
75 <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
Instrumentale9ae0482019-08-02 14:46:27 -050084 <nexusproxy>https://nexus.onap.org</nexusproxy>
85 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
86 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
87 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
88 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
89 </properties>
IanHowell3901cf82018-04-03 11:24:27 -050090
Instrumentale9ae0482019-08-02 14:46:27 -050091 <dependencies>
92 <dependency>
93 <groupId>org.onap.aaf.authz</groupId>
94 <artifactId>aaf-misc-env</artifactId>
95 <version>${project.version}</version>
96 </dependency>
97 </dependencies>
Instrumentalac1e1ec2018-03-26 13:37:04 -070098
Sai Gandham61f8fdf2018-04-03 12:07:07 -050099<!-- ============================================================== -->
Instrumentale9ae0482019-08-02 14:46:27 -0500100 <!-- Define common plugins and make them available for all modules -->
101 <!-- ============================================================== -->
102 <build>
103 <testSourceDirectory>src/test/java</testSourceDirectory>
104 <plugins>
105 </plugins>
106 <pluginManagement>
107 <plugins>
108 <plugin>
109 <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>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500118
Instrumentale9ae0482019-08-02 14:46:27 -0500119 <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>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500132
Instrumentale9ae0482019-08-02 14:46:27 -0500133 <!-- 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>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500142
Instrumentale9ae0482019-08-02 14:46:27 -0500143 <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>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500150
Instrumentale9ae0482019-08-02 14:46:27 -0500151 <plugin>
152 <artifactId>maven-assembly-plugin</artifactId>
153 <version>2.5.5</version>
154 </plugin>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500155
Instrumentale9ae0482019-08-02 14:46:27 -0500156 <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>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500163
Instrumentale9ae0482019-08-02 14:46:27 -0500164 </plugin>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500165
Instrumentale9ae0482019-08-02 14:46:27 -0500166 <plugin>
167 <groupId>org.apache.maven.plugins</groupId>
168 <artifactId>maven-dependency-plugin</artifactId>
169 <version>2.10</version>
170 </plugin>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500171
Instrumentale9ae0482019-08-02 14:46:27 -0500172 <!-- Maven surefire plugin for testing -->
173 <plugin>
174 <artifactId>maven-surefire-plugin</artifactId>
175 <version>2.17</version>
176 <configuration>
177 <skipTests>false</skipTests>
178 <includes>
179 <include>**/JU*.java</include>
180 </includes>
181 <excludes>
182 </excludes>
183 </configuration>
184 </plugin>
Sai Gandham61f8fdf2018-04-03 12:07:07 -0500185
Instrumentale9ae0482019-08-02 14:46:27 -0500186 <!--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.jacoco</groupId>
220 <artifactId>jacoco-maven-plugin</artifactId>
221 <version>${jacoco.version}</version>
222 <configuration>
223 <excludes>
224 <exclude>**/gen/**</exclude>
225 <exclude>**/generated-sources/**</exclude>
226 <exclude>**/yang-gen/**</exclude>
227 <exclude>**/pax/**</exclude>
228 </excludes>
229 </configuration>
230 <executions>
231 <execution>
232 <id>pre-unit-test</id>
233 <goals>
234 <goal>prepare-agent</goal>
235 </goals>
236 <configuration>
237 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
238 <propertyName>surefireArgLine</propertyName>
239 </configuration>
240 </execution>
241 <execution>
242 <id>post-unit-test</id>
243 <phase>test</phase>
244 <goals>
245 <goal>report</goal>
246 </goals>
247 <configuration>
248 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
249 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
250 </configuration>
251 </execution>
252 <execution>
253 <id>pre-integration-test</id>
254 <phase>pre-integration-test</phase>
255 <goals>
256 <goal>prepare-agent</goal>
257 </goals>
258 <configuration>
259 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
260 <propertyName>failsafeArgLine</propertyName>
261 </configuration>
262 </execution>
263 <execution>
264 <id>post-integration-test</id>
265 <phase>post-integration-test</phase>
266 <goals>
267 <goal>report</goal>
268 </goals>
269 <configuration>
270 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
271 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
272 </configuration>
273 </execution>
274 </executions>
275 </plugin>
276 </plugins>
277 </pluginManagement>
278 </build>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700279
Instrumentale9ae0482019-08-02 14:46:27 -0500280 <distributionManagement>
281 <repository>
282 <id>ecomp-releases</id>
283 <name>AAF Release Repository</name>
284 <url>${nexusproxy}${releaseNexusPath}</url>
285 </repository>
286 <snapshotRepository>
287 <id>ecomp-snapshots</id>
288 <name>AAF Snapshot Repository</name>
289 <url>${nexusproxy}${snapshotNexusPath}</url>
290 </snapshotRepository>
291 <site>
292 <id>ecomp-site</id>
293 <url>dav:${nexusproxy}${sitePath}</url>
294 </site>
295 </distributionManagement>
Instrumentalac1e1ec2018-03-26 13:37:04 -0700296</project>