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