Merge "Sonar- AAF AUTH BATCH"
[aaf/authz.git] / cadi / 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24     <parent>
25         <groupId>org.onap.aaf.authz</groupId>
26         <artifactId>parent</artifactId>
27         <version>2.1.16-SNAPSHOT</version>
28     </parent>
29     <artifactId>cadiparent</artifactId>
30     <name>AAF CADI Parent (Code, Access, Data, Identity)</name>
31     <inceptionYear>2015-07-20</inceptionYear>
32     <organization>
33         <name>ONAP</name>
34     </organization>
35     <packaging>pom</packaging>
36     
37     <properties>
38         <!-- SONAR -->
39         <!-- <sonar.skip>true</sonar.skip> -->
40         <jacoco.version>0.7.7.201606060606</jacoco.version>
41         <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
42         <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
43         <!-- Default Sonar configuration -->
44         <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
45         <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
46         <!-- Note: This list should match jacoco-maven-plugin's exclusion list 
47             below -->
48         <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
49         <nexusproxy>https://nexus.onap.org</nexusproxy>
50         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
51         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
52         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
53         <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
54     </properties>
55     
56
57     <!-- ============================================================== -->
58     <!-- Define the major contributors and developers of CADI -->
59     <!-- ============================================================== -->
60     <developers>
61         <developer>
62             <name>Jonathan Gathman</name>
63             <email>jonathan.gathman@att.com</email>
64             <organization>ATT</organization>
65             <roles>
66                 <role>Architect</role>
67                 <role>Lead Developer</role>
68             </roles>
69         </developer>
70         <developer>
71             <name>Gabe Maurer</name>
72             <email>gabe.maurer@att.com</email>
73             <organization>ATT</organization>
74             <roles>
75                 <role>Developer</role>
76             </roles>
77         </developer>
78         <developer>
79             <name>Ian Howell</name>
80             <email>ian.howell@att.com</email>
81             <organization>ATT</organization>
82             <roles>
83                 <role>Developer</role>
84             </roles>
85         </developer>
86         <developer>
87             <name>Sai Gandham</name>
88             <email>sai.gandham@att.com</email>
89             <organization>ATT</organization>
90             <roles>
91                 <role>Developer</role>
92             </roles>
93         </developer>
94     </developers>
95
96
97     <dependencies>
98         <dependency>
99             <groupId>org.mockito</groupId>
100             <artifactId>mockito-all</artifactId>
101             <scope>test</scope>
102         </dependency>
103
104         <dependency>
105             <groupId>org.powermock</groupId>
106             <artifactId>powermock-module-junit4</artifactId>
107             <scope>test</scope>
108         </dependency>
109         <dependency>
110             <groupId>org.powermock</groupId>
111             <artifactId>powermock-api-mockito</artifactId>
112             <scope>test</scope>
113         </dependency>
114
115         <dependency>
116             <groupId>junit</groupId>
117             <artifactId>junit</artifactId>
118             <scope>test</scope>
119         </dependency>
120     </dependencies>
121
122     <!-- ============================================================== -->
123     <!-- Define sub-projects (modules) -->
124     <!-- ============================================================== -->
125     <modules>
126         <module>core</module>
127         <module>client</module>
128         <module>aaf</module>
129         <module>oauth-enduser</module>
130         <module>servlet-sample</module>
131     </modules>
132
133
134     <!-- ============================================================== -->
135     <!-- Define common plugins and make them available for all modules -->
136     <!-- ============================================================== -->
137     <build>
138         <testSourceDirectory>src/test/java</testSourceDirectory>
139         <plugins>
140         </plugins>
141         <pluginManagement>
142             <plugins>
143                 <plugin>
144                     <inherited>true</inherited>
145                     <groupId>org.apache.maven.plugins</groupId>
146                     <artifactId>maven-compiler-plugin</artifactId>
147                     <version>2.3.2</version>
148                     <configuration>
149                         <source>1.7</source>
150                         <target>1.7</target>
151                     </configuration>
152                 </plugin>
153
154                 <plugin>
155                     <groupId>org.apache.maven.plugins</groupId>
156                     <version>2.4</version>
157                     <artifactId>maven-jar-plugin</artifactId>
158                     <configuration>
159                         <outputDirectory>target</outputDirectory>
160                         <archive>
161                             <manifestEntries>
162                                 <Sealed>true</Sealed>
163                             </manifestEntries>
164                         </archive>
165                     </configuration>
166                 </plugin>
167
168                 <!-- Define the javadoc plugin -->
169                 <plugin>
170                     <groupId>org.apache.maven.plugins</groupId>
171                     <artifactId>maven-javadoc-plugin</artifactId>
172                     <version>2.10</version>
173                     <configuration>
174                         <excludePackageNames>org.opendaylight.*</excludePackageNames>
175                     </configuration>
176                 </plugin>
177
178                 <plugin>
179                     <artifactId>maven-release-plugin</artifactId>
180                     <version>2.5.2</version>
181                     <configuration>
182                         <goals>-s ${mvn.settings} deploy</goals>
183                     </configuration>
184                 </plugin>
185
186                 <plugin>
187                     <artifactId>maven-assembly-plugin</artifactId>
188                     <version>2.5.5</version>
189                 </plugin>
190
191                 <plugin>
192                     <groupId>org.apache.maven.plugins</groupId>
193                     <artifactId>maven-deploy-plugin</artifactId>
194                     <version>2.8.1</version>
195                     <configuration>
196                         <skip>false</skip>
197                     </configuration>
198
199                 </plugin>
200
201                 <plugin>
202                     <groupId>org.apache.maven.plugins</groupId>
203                     <artifactId>maven-dependency-plugin</artifactId>
204                     <version>2.10</version>
205                 </plugin>
206
207                 <!-- Maven surefire plugin for testing -->
208                 <plugin>
209                     <artifactId>maven-surefire-plugin</artifactId>
210                     <version>2.17</version>
211                     <configuration>
212                         <skipTests>false</skipTests>
213                         <includes>
214                             <include>**/JU*.java</include>
215                         </includes>
216                         <excludes>
217                         </excludes>
218                         <useSystemClassLoader>false</useSystemClassLoader>
219                     </configuration>
220                 </plugin>
221
222                 <!--This plugin's configuration is used to store Eclipse m2e settings
223                     only. It has no influence on the Maven build itself. -->
224                 <plugin>
225                     <groupId>org.eclipse.m2e</groupId>
226                     <artifactId>lifecycle-mapping</artifactId>
227                     <version>1.0.0</version>
228                     <configuration>
229                         <lifecycleMappingMetadata>
230                             <pluginExecutions>
231                                 <pluginExecution>
232                                     <pluginExecutionFilter>
233                                         <groupId>
234                                             org.codehaus.mojo
235                                         </groupId>
236                                         <artifactId>
237                                             jaxb2-maven-plugin
238                                         </artifactId>
239                                         <versionRange>
240                                             [1.3,)
241                                         </versionRange>
242                                         <goals>
243                                             <goal>xjc</goal>
244                                         </goals>
245                                     </pluginExecutionFilter>
246                                     <action>
247                                         <ignore />
248                                     </action>
249                                 </pluginExecution>
250                             </pluginExecutions>
251                         </lifecycleMappingMetadata>
252                     </configuration>
253                 </plugin>
254                 <plugin>
255                     <groupId>org.jacoco</groupId>
256                     <artifactId>jacoco-maven-plugin</artifactId>
257                     <version>${jacoco.version}</version>
258                     <configuration>
259                         <excludes>
260                             <exclude>**/gen/**</exclude>
261                             <exclude>**/generated-sources/**</exclude>
262                             <exclude>**/yang-gen/**</exclude>
263                             <exclude>**/pax/**</exclude>
264                         </excludes>
265                     </configuration>
266                     <executions>
267                         <execution>
268                             <id>pre-unit-test</id>
269                             <goals>
270                                 <goal>prepare-agent</goal>
271                             </goals>
272                             <configuration>
273                                 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
274                                 <propertyName>surefireArgLine</propertyName>
275                             </configuration>
276                         </execution>
277                         <execution>
278                             <id>post-unit-test</id>
279                             <phase>test</phase>
280                             <goals>
281                                 <goal>report</goal>
282                             </goals>
283                             <configuration>
284                                 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
285                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
286                             </configuration>
287                         </execution>
288                         <execution>
289                             <id>pre-integration-test</id>
290                             <phase>pre-integration-test</phase>
291                             <goals>
292                                 <goal>prepare-agent</goal>
293                             </goals>
294                             <configuration>
295                                 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
296                                 <propertyName>failsafeArgLine</propertyName>
297                             </configuration>
298                         </execution>
299                         <execution>
300                             <id>post-integration-test</id>
301                             <phase>post-integration-test</phase>
302                             <goals>
303                                 <goal>report</goal>
304                             </goals>
305                             <configuration>
306                                 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
307                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
308                             </configuration>
309                         </execution>
310                     </executions>
311                 </plugin>
312             </plugins>
313         </pluginManagement>
314     </build>
315
316     <distributionManagement>
317         <repository>
318             <id>ecomp-releases</id>
319             <name>AAF Release Repository</name>
320             <url>${nexusproxy}${releaseNexusPath}</url>
321         </repository>
322         <snapshotRepository>
323             <id>ecomp-snapshots</id>
324             <name>AAF Snapshot Repository</name>
325             <url>${nexusproxy}${snapshotNexusPath}</url>
326         </snapshotRepository>
327         <site>
328             <id>ecomp-site</id>
329             <url>dav:${nexusproxy}${sitePath}</url>
330         </site>
331     </distributionManagement>
332
333 </project>