Create and prepare non-deploy release 2.7.1
[aaf/authz.git] / misc / log4j / pom.xml
1 <?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>
25         <groupId>org.onap.aaf.authz</groupId>
26         <artifactId>miscparent</artifactId>
27         <version>2.7.1-SNAPSHOT</version>
28         <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>Sai Gandham</name>
48             <email>sai.gandham@att.com</email>
49             <organization>ATT</organization>
50             <roles>
51                 <role>Developer</role>
52             </roles>
53         </developer>
54     </developers>
55
56     <properties>
57     <!--  SONAR  -->
58         <!--<sonar.skip>true</sonar.skip> -->
59          <jacoco.version>0.7.7.201606060606</jacoco.version>
60         <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
61         <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
62         <!-- Default Sonar configuration -->
63         <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
64         <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
65         <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
66         <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
67
68         <nexusproxy>https://nexus.onap.org</nexusproxy>
69         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
70         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
71         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
72         <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
73     </properties>
74
75     <dependencies>
76         <dependency>
77             <groupId>org.onap.aaf.authz</groupId>
78             <artifactId>aaf-misc-env</artifactId>
79             <version>${project.version}</version>
80         </dependency>
81     </dependencies>
82
83 <!-- ============================================================== -->
84     <!-- Define common plugins and make them available for all modules -->
85     <!-- ============================================================== -->
86     <build>
87         <testSourceDirectory>src/test/java</testSourceDirectory>
88         <plugins>
89         </plugins>
90         <pluginManagement>
91             <plugins>
92                 <plugin>
93                     <inherited>true</inherited>
94                     <groupId>org.apache.maven.plugins</groupId>
95                     <artifactId>maven-compiler-plugin</artifactId>
96                     <version>2.3.2</version>
97                     <configuration>
98                         <source>1.7</source>
99                         <target>1.7</target>
100                     </configuration>
101                 </plugin>
102
103                 <plugin>
104                     <groupId>org.apache.maven.plugins</groupId>
105                     <version>2.4</version>
106                     <artifactId>maven-jar-plugin</artifactId>
107                     <configuration>
108                         <outputDirectory>target</outputDirectory>
109                         <archive>
110                             <manifestEntries>
111                                 <Sealed>true</Sealed>
112                             </manifestEntries>
113                         </archive>
114                     </configuration>
115                 </plugin>
116
117                 <!-- Define the javadoc plugin -->
118                 <plugin>
119                     <groupId>org.apache.maven.plugins</groupId>
120                     <artifactId>maven-javadoc-plugin</artifactId>
121                     <version>2.10</version>
122                     <configuration>
123                         <excludePackageNames>org.opendaylight.*</excludePackageNames>
124                     </configuration>
125                 </plugin>
126
127                 <plugin>
128                     <artifactId>maven-release-plugin</artifactId>
129                     <version>2.5.2</version>
130                     <configuration>
131                         <goals>-s ${mvn.settings} deploy</goals>
132                     </configuration>
133                 </plugin>
134
135                 <plugin>
136                     <artifactId>maven-assembly-plugin</artifactId>
137                     <version>2.5.5</version>
138                 </plugin>
139
140                 <plugin>
141                     <groupId>org.apache.maven.plugins</groupId>
142                     <artifactId>maven-dependency-plugin</artifactId>
143                     <version>2.10</version>
144                 </plugin>
145
146                 <!-- Maven surefire plugin for testing -->
147                 <plugin>
148                     <artifactId>maven-surefire-plugin</artifactId>
149                     <version>2.17</version>
150                     <configuration>
151                         <skipTests>false</skipTests>
152                         <includes>
153                             <include>**/JU*.java</include>
154                         </includes>
155                         <excludes>
156                         </excludes>
157                     </configuration>
158                 </plugin>
159
160                 <!--This plugin's configuration is used to store Eclipse m2e settings
161                     only. It has no influence on the Maven build itself. -->
162                 <plugin>
163                     <groupId>org.eclipse.m2e</groupId>
164                     <artifactId>lifecycle-mapping</artifactId>
165                     <version>1.0.0</version>
166                     <configuration>
167                         <lifecycleMappingMetadata>
168                             <pluginExecutions>
169                                 <pluginExecution>
170                                     <pluginExecutionFilter>
171                                         <groupId>
172                                             org.codehaus.mojo
173                                         </groupId>
174                                         <artifactId>
175                                             jaxb2-maven-plugin
176                                         </artifactId>
177                                         <versionRange>
178                                             [1.3,)
179                                         </versionRange>
180                                         <goals>
181                                             <goal>xjc</goal>
182                                         </goals>
183                                     </pluginExecutionFilter>
184                                     <action>
185                                         <ignore />
186                                     </action>
187                                 </pluginExecution>
188                             </pluginExecutions>
189                         </lifecycleMappingMetadata>
190                     </configuration>
191                 </plugin>
192                 <plugin>
193                     <groupId>org.jacoco</groupId>
194                     <artifactId>jacoco-maven-plugin</artifactId>
195                     <version>${jacoco.version}</version>
196                     <configuration>
197                         <excludes>
198                             <exclude>**/gen/**</exclude>
199                             <exclude>**/generated-sources/**</exclude>
200                             <exclude>**/yang-gen/**</exclude>
201                             <exclude>**/pax/**</exclude>
202                         </excludes>
203                     </configuration>
204                     <executions>
205                         <execution>
206                             <id>pre-unit-test</id>
207                             <goals>
208                                 <goal>prepare-agent</goal>
209                             </goals>
210                             <configuration>
211                                 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
212                                 <propertyName>surefireArgLine</propertyName>
213                             </configuration>
214                         </execution>
215                         <execution>
216                             <id>post-unit-test</id>
217                             <phase>test</phase>
218                             <goals>
219                                 <goal>report</goal>
220                             </goals>
221                             <configuration>
222                                 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
223                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
224                             </configuration>
225                         </execution>
226                         <execution>
227                             <id>pre-integration-test</id>
228                             <phase>pre-integration-test</phase>
229                             <goals>
230                                 <goal>prepare-agent</goal>
231                             </goals>
232                             <configuration>
233                                 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
234                                 <propertyName>failsafeArgLine</propertyName>
235                             </configuration>
236                         </execution>
237                         <execution>
238                             <id>post-integration-test</id>
239                             <phase>post-integration-test</phase>
240                             <goals>
241                                 <goal>report</goal>
242                             </goals>
243                             <configuration>
244                                 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
245                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
246                             </configuration>
247                         </execution>
248                     </executions>
249                 </plugin>
250             </plugins>
251         </pluginManagement>
252     </build>
253
254     <distributionManagement>
255         <repository>
256             <id>ecomp-releases</id>
257             <name>AAF Release Repository</name>
258             <url>${nexusproxy}${releaseNexusPath}</url>
259         </repository>
260         <snapshotRepository>
261             <id>ecomp-snapshots</id>
262             <name>AAF Snapshot Repository</name>
263             <url>${nexusproxy}${snapshotNexusPath}</url>
264         </snapshotRepository>
265         <site>
266             <id>ecomp-site</id>
267             <url>dav:${nexusproxy}${sitePath}</url>
268         </site>
269     </distributionManagement>
270 </project>