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