Move AAF Poms to 2.1.16
[aaf/authz.git] / misc / rosetta / 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.1.16-SNAPSHOT</version>
28         <relativePath>..</relativePath>
29     </parent>
30
31     <modelVersion>4.0.0</modelVersion>
32     <artifactId>aaf-misc-rosetta</artifactId>
33     <name>AAF Misc Rosetta</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>
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>
71
72     <properties>
73     <!--  SONAR  -->
74     <scijava.jvm.version>1.8</scijava.jvm.version>
75     <!-- <sonar.skip>true</sonar.skip> -->
76          <jacoco.version>0.7.7.201606060606</jacoco.version>
77         <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
78         <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
79         <!-- Default Sonar configuration -->
80         <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
81         <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
82         <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
83         <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
84
85         <nexusproxy>https://nexus.onap.org</nexusproxy>
86         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
87         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
88         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
89         <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
90     </properties>
91
92     <dependencies>
93         <dependency>
94             <groupId>org.onap.aaf.authz</groupId>
95             <artifactId>aaf-misc-env</artifactId>
96             <version>${project.version}</version>
97         </dependency>
98     </dependencies>
99
100             
101
102                 <!-- ============================================================== -->
103     <!-- Define common plugins and make them available for all modules -->
104     <!-- ============================================================== -->
105     <build>
106         <testSourceDirectory>src/test/java</testSourceDirectory>
107         
108             <plugins>
109                 <plugin>
110                     <inherited>true</inherited>
111                     <groupId>org.apache.maven.plugins</groupId>
112                     <artifactId>maven-compiler-plugin</artifactId>
113                     <configuration>
114                         <source>1.7</source>
115                         <target>1.7</target>
116                     </configuration>
117                 </plugin>
118
119                 <plugin>
120                 <groupId>org.jvnet.jaxb2.maven2</groupId>
121                 <artifactId>maven-jaxb2-plugin</artifactId>
122                 <version>0.8.2</version>
123                 <executions>
124                     <execution>
125                         <goals>
126                             <goal>generate</goal>
127                         </goals>
128                     </execution>
129                 </executions>
130                 <configuration>
131                     <schemaDirectory>src/main/xsd</schemaDirectory>
132                 </configuration>
133             </plugin>
134             
135                 <plugin>
136                     <groupId>org.apache.maven.plugins</groupId>
137                     <artifactId>maven-jar-plugin</artifactId>
138                     <configuration>
139                         <outputDirectory>target</outputDirectory>
140                         <archive>
141                             <manifestEntries>
142                                 <Sealed>true</Sealed>
143                             </manifestEntries>
144                         </archive>
145                     </configuration>
146                 </plugin>
147
148                 <!-- Define the javadoc plugin -->
149                 <plugin>
150                     <groupId>org.apache.maven.plugins</groupId>
151                     <artifactId>maven-javadoc-plugin</artifactId>
152                     <configuration>
153                         <excludePackageNames>org.opendaylight.*</excludePackageNames>
154                     </configuration>
155                 </plugin>
156
157                 <plugin>
158                     <artifactId>maven-release-plugin</artifactId>
159                     <configuration>
160                         <goals>-s ${mvn.settings} deploy</goals>
161                     </configuration>
162                 </plugin>
163
164                 <plugin>
165                     <artifactId>maven-assembly-plugin</artifactId>
166                 </plugin>
167
168                 <plugin>
169                     <groupId>org.apache.maven.plugins</groupId>
170                     <artifactId>maven-deploy-plugin</artifactId>
171                     <configuration>
172                         <skip>false</skip>
173                     </configuration>
174
175                 </plugin>
176
177                 <plugin>
178                     <groupId>org.apache.maven.plugins</groupId>
179                     <artifactId>maven-dependency-plugin</artifactId>
180                 </plugin>
181
182                 <!-- Maven surefire plugin for testing -->
183                 <plugin>
184                     <artifactId>maven-surefire-plugin</artifactId>
185                     <configuration>
186                     <skipTests>false</skipTests>
187                     <includes>
188                         <include>**/JU*.java</include>
189                     </includes>
190                     <excludes>
191                     </excludes>
192                     </configuration>
193                 </plugin>
194
195                 <!--This plugin's configuration is used to store Eclipse m2e settings
196                     only. It has no influence on the Maven build itself. -->
197                 <plugin>
198                     <groupId>org.eclipse.m2e</groupId>
199                     <artifactId>lifecycle-mapping</artifactId>
200                     <configuration>
201                         <lifecycleMappingMetadata>
202                             <pluginExecutions>
203                                 <pluginExecution>
204                                     <pluginExecutionFilter>
205                                         <groupId>
206                                             org.codehaus.mojo
207                                         </groupId>
208                                         <artifactId>
209                                             jaxb2-maven-plugin
210                                         </artifactId>
211                                         <versionRange>
212                                             [1.3,)
213                                         </versionRange>
214                                         <goals>
215                                             <goal>xjc</goal>
216                                         </goals>
217                                     </pluginExecutionFilter>
218                                     <action>
219                                         <ignore />
220                                     </action>
221                                 </pluginExecution>
222                             </pluginExecutions>
223                         </lifecycleMappingMetadata>
224                     </configuration>
225                 </plugin>
226                 <plugin>
227                     <groupId>org.jacoco</groupId>
228                     <artifactId>jacoco-maven-plugin</artifactId>
229                     <configuration>
230                         <excludes>
231                             <exclude>**/gen/**</exclude>
232                             <exclude>**/generated-sources/**</exclude>
233                             <exclude>**/yang-gen/**</exclude>
234                             <exclude>**/pax/**</exclude>
235                         </excludes>
236                     </configuration>
237                     <executions>
238                         <execution>
239                             <id>pre-unit-test</id>
240                             <goals>
241                                 <goal>prepare-agent</goal>
242                             </goals>
243                             <configuration>
244                                 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
245                                 <propertyName>surefireArgLine</propertyName>
246                             </configuration>
247                         </execution>
248                         <execution>
249                             <id>post-unit-test</id>
250                             <phase>test</phase>
251                             <goals>
252                                 <goal>report</goal>
253                             </goals>
254                             <configuration>
255                                 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
256                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
257                             </configuration>
258                         </execution>
259                         <execution>
260                             <id>pre-integration-test</id>
261                             <phase>pre-integration-test</phase>
262                             <goals>
263                                 <goal>prepare-agent</goal>
264                             </goals>
265                             <configuration>
266                                 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
267                                 <propertyName>failsafeArgLine</propertyName>
268                             </configuration>
269                         </execution>
270                         <execution>
271                             <id>post-integration-test</id>
272                             <phase>post-integration-test</phase>
273                             <goals>
274                                 <goal>report</goal>
275                             </goals>
276                             <configuration>
277                                 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
278                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
279                             </configuration>
280                         </execution>
281                     </executions>
282                 </plugin>
283             </plugins>
284     </build>
285
286     <distributionManagement>
287         <repository>
288             <id>ecomp-releases</id>
289             <name>AAF Release Repository</name>
290             <url>${nexusproxy}${releaseNexusPath}</url>
291         </repository>
292         <snapshotRepository>
293             <id>ecomp-snapshots</id>
294             <name>AAF Snapshot Repository</name>
295             <url>${nexusproxy}${snapshotNexusPath}</url>
296         </snapshotRepository>
297         <site>
298             <id>ecomp-site</id>
299             <url>dav:${nexusproxy}${sitePath}</url>
300         </site>
301     </distributionManagement>
302
303 </project>