changed to unmaintained
[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.1.17-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     </dependencies>
77
78     <modules>
79         <module>env</module>
80         <module>xgen</module>
81         <module>rosetta</module>
82         <module>log4j</module> <!--  note: generates log4j, to avoid Jar conflict -->
83     </modules>
84     
85     <!-- ============================================================== -->
86     <!-- Define common plugins and make them available for all modules -->
87     <!-- ============================================================== -->
88     <build>
89         <testSourceDirectory>src/test/java</testSourceDirectory>
90         <plugins>
91         </plugins>
92         <pluginManagement>
93             <plugins>
94                 <plugin>
95                     <inherited>true</inherited>
96                     <groupId>org.apache.maven.plugins</groupId>
97                     <artifactId>maven-compiler-plugin</artifactId>
98                     <version>2.3.2</version>
99                     <configuration>
100                         <source>1.7</source>
101                         <target>1.7</target>
102                     </configuration>
103                 </plugin>
104
105                 <plugin>
106                     <groupId>org.apache.maven.plugins</groupId>
107                     <version>2.4</version>
108                     <artifactId>maven-jar-plugin</artifactId>
109                     <configuration>
110                         <outputDirectory>target</outputDirectory>
111                         <archive>
112                             <manifestEntries>
113                                 <Sealed>true</Sealed>
114                             </manifestEntries>
115                         </archive>
116                     </configuration>
117                 </plugin>
118
119                 <!-- Define the javadoc plugin -->
120                 <plugin>
121                     <groupId>org.apache.maven.plugins</groupId>
122                     <artifactId>maven-javadoc-plugin</artifactId>
123                     <version>2.10</version>
124                     <configuration>
125                         <excludePackageNames>org.opendaylight.*</excludePackageNames>
126                     </configuration>
127                 </plugin>
128
129                 <plugin>
130                     <artifactId>maven-release-plugin</artifactId>
131                     <version>2.5.2</version>
132                     <configuration>
133                         <goals>-s ${mvn.settings} deploy</goals>
134                     </configuration>
135                 </plugin>
136
137                 <plugin>
138                     <artifactId>maven-assembly-plugin</artifactId>
139                     <version>2.5.5</version>
140                 </plugin>
141
142                 <plugin>
143                     <groupId>org.apache.maven.plugins</groupId>
144                     <artifactId>maven-deploy-plugin</artifactId>
145                     <version>2.8.1</version>
146                     <configuration>
147                         <skip>false</skip>
148                     </configuration>
149
150                 </plugin>
151
152                 <plugin>
153                     <groupId>org.apache.maven.plugins</groupId>
154                     <artifactId>maven-dependency-plugin</artifactId>
155                     <version>2.10</version>
156                 </plugin>
157
158                 <!-- Maven surefire plugin for testing -->
159                 <plugin>
160                     <artifactId>maven-surefire-plugin</artifactId>
161                     <version>2.17</version>
162                     <configuration>
163                         <skipTests>false</skipTests>
164                         <includes>
165                             <include>**/JU*.java</include>
166                         </includes>
167                         <excludes>
168                         </excludes>
169                         <useSystemClassLoader>false</useSystemClassLoader>
170                     </configuration>
171                 </plugin>
172
173                 <!--This plugin's configuration is used to store Eclipse m2e settings
174                     only. It has no influence on the Maven build itself. -->
175                 <plugin>
176                     <groupId>org.eclipse.m2e</groupId>
177                     <artifactId>lifecycle-mapping</artifactId>
178                     <version>1.0.0</version>
179                     <configuration>
180                         <lifecycleMappingMetadata>
181                             <pluginExecutions>
182                                 <pluginExecution>
183                                     <pluginExecutionFilter>
184                                         <groupId>
185                                             org.codehaus.mojo
186                                         </groupId>
187                                         <artifactId>
188                                             jaxb2-maven-plugin
189                                         </artifactId>
190                                         <versionRange>
191                                             [1.3,)
192                                         </versionRange>
193                                         <goals>
194                                             <goal>xjc</goal>
195                                         </goals>
196                                     </pluginExecutionFilter>
197                                     <action>
198                                         <ignore />
199                                     </action>
200                                 </pluginExecution>
201                             </pluginExecutions>
202                         </lifecycleMappingMetadata>
203                     </configuration>
204                 </plugin>
205                 <plugin>
206                     <groupId>org.jacoco</groupId>
207                     <artifactId>jacoco-maven-plugin</artifactId>
208                     <version>${jacoco.version}</version>
209                     <configuration>
210                         <excludes>
211                             <exclude>**/gen/**</exclude>
212                             <exclude>**/generated-sources/**</exclude>
213                             <exclude>**/yang-gen/**</exclude>
214                             <exclude>**/pax/**</exclude>
215                         </excludes>
216                     </configuration>
217                     <executions>
218                         <execution>
219                             <id>pre-unit-test</id>
220                             <goals>
221                                 <goal>prepare-agent</goal>
222                             </goals>
223                             <configuration>
224                                 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
225                                 <propertyName>surefireArgLine</propertyName>
226                             </configuration>
227                         </execution>
228                         <execution>
229                             <id>post-unit-test</id>
230                             <phase>test</phase>
231                             <goals>
232                                 <goal>report</goal>
233                             </goals>
234                             <configuration>
235                                 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
236                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
237                             </configuration>
238                         </execution>
239                         <execution>
240                             <id>pre-integration-test</id>
241                             <phase>pre-integration-test</phase>
242                             <goals>
243                                 <goal>prepare-agent</goal>
244                             </goals>
245                             <configuration>
246                                 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
247                                 <propertyName>failsafeArgLine</propertyName>
248                             </configuration>
249                         </execution>
250                         <execution>
251                             <id>post-integration-test</id>
252                             <phase>post-integration-test</phase>
253                             <goals>
254                                 <goal>report</goal>
255                             </goals>
256                             <configuration>
257                                 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
258                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
259                             </configuration>
260                         </execution>
261                     </executions>
262                 </plugin>
263             </plugins>
264         </pluginManagement>
265     </build>
266
267
268     <distributionManagement>
269         <repository>
270             <id>ecomp-releases</id>
271             <name>AAF Release Repository</name>
272             <url>${nexusproxy}${releaseNexusPath}</url>
273         </repository>
274         <snapshotRepository>
275             <id>ecomp-snapshots</id>
276             <name>AAF Snapshot Repository</name>
277             <url>${nexusproxy}${snapshotNexusPath}</url>
278         </snapshotRepository>
279         <site>
280             <id>ecomp-site</id>
281             <url>dav:${nexusproxy}${sitePath}</url>
282         </site>
283     </distributionManagement>
284 </project>