blob: fa1dd0f17d63850f1bd86d1110b6dc93ab9c1348 [file] [log] [blame]
Instrumentala20accc2018-03-26 13:49:56 -07001<?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>
Sai Gandham3a70e912018-04-12 22:16:21 +000024 <parent>
Instrumentala97d7312018-05-25 15:04:43 -050025 <groupId>org.onap.aaf.authz</groupId>
26 <artifactId>parent</artifactId>
Gathman, Jonathan (jg1555)58c2a712019-07-17 16:07:20 -050027 <version>2.1.15-SNAPSHOT</version>
Sai Gandham3a70e912018-04-12 22:16:21 +000028 </parent>
Sai Gandham83fc0252018-04-09 16:28:48 +000029 <artifactId>cadiparent</artifactId>
Instrumentala20accc2018-03-26 13:49:56 -070030 <name>AAF CADI Parent (Code, Access, Data, Identity)</name>
Instrumentala20accc2018-03-26 13:49:56 -070031 <inceptionYear>2015-07-20</inceptionYear>
32 <organization>
33 <name>ONAP</name>
34 </organization>
35 <packaging>pom</packaging>
Sai Gandham99f14fb2018-04-08 10:13:10 -050036
Instrumentala20accc2018-03-26 13:49:56 -070037 <properties>
Instrumental9f52db12018-08-31 09:53:21 -050038 <!-- SONAR -->
Sai Gandhamf44b9272018-04-12 16:42:07 +000039 <!-- <sonar.skip>true</sonar.skip> -->
Instrumental9f52db12018-08-31 09:53:21 -050040 <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>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000049 <nexusproxy>https://nexus.onap.org</nexusproxy>
50 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
51 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
52 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Sai Gandham30dca6e2018-04-09 21:22:48 +000053 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
Instrumentala20accc2018-03-26 13:49:56 -070054 </properties>
Instrumental9f52db12018-08-31 09:53:21 -050055
Instrumentala20accc2018-03-26 13:49:56 -070056
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>
Sai Gandhame01703c2018-03-26 22:57:09 +000086 <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>
Instrumentala20accc2018-03-26 13:49:56 -070094 </developers>
95
96
97 <dependencies>
98 <dependency>
99 <groupId>org.mockito</groupId>
100 <artifactId>mockito-all</artifactId>
Instrumentala20accc2018-03-26 13:49:56 -0700101 <scope>test</scope>
102 </dependency>
IanHowell3901cf82018-04-03 11:24:27 -0500103
Instrumentala20accc2018-03-26 13:49:56 -0700104 <dependency>
105 <groupId>org.powermock</groupId>
106 <artifactId>powermock-module-junit4</artifactId>
Instrumentala20accc2018-03-26 13:49:56 -0700107 <scope>test</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.powermock</groupId>
111 <artifactId>powermock-api-mockito</artifactId>
Instrumentala20accc2018-03-26 13:49:56 -0700112 <scope>test</scope>
113 </dependency>
114
115 <dependency>
116 <groupId>junit</groupId>
117 <artifactId>junit</artifactId>
Instrumentala20accc2018-03-26 13:49:56 -0700118 <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>
Instrumentala20accc2018-03-26 13:49:56 -0700129 <module>oauth-enduser</module>
Instrumental824dc7b2018-09-07 11:41:35 -0500130 <module>servlet-sample</module>
Instrumentala20accc2018-03-26 13:49:56 -0700131 </modules>
132
Instrumentala20accc2018-03-26 13:49:56 -0700133
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>
IanHowell3901cf82018-04-03 11:24:27 -0500141 <pluginManagement>
Instrumentala20accc2018-03-26 13:49:56 -0700142 <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>
IanHowell3901cf82018-04-03 11:24:27 -0500153
Instrumentala20accc2018-03-26 13:49:56 -0700154 <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>
IanHowell3901cf82018-04-03 11:24:27 -0500177
Instrumentala20accc2018-03-26 13:49:56 -0700178 <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>
IanHowell3901cf82018-04-03 11:24:27 -0500185
Instrumentala20accc2018-03-26 13:49:56 -0700186 <plugin>
187 <artifactId>maven-assembly-plugin</artifactId>
188 <version>2.5.5</version>
189 </plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500190
Instrumentala20accc2018-03-26 13:49:56 -0700191 <plugin>
192 <groupId>org.apache.maven.plugins</groupId>
193 <artifactId>maven-deploy-plugin</artifactId>
194 <version>2.8.1</version>
195 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -0500196 <skip>false</skip>
Instrumentala20accc2018-03-26 13:49:56 -0700197 </configuration>
IanHowell3901cf82018-04-03 11:24:27 -0500198
Instrumentala20accc2018-03-26 13:49:56 -0700199 </plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500200
Instrumentala20accc2018-03-26 13:49:56 -0700201 <plugin>
202 <groupId>org.apache.maven.plugins</groupId>
203 <artifactId>maven-dependency-plugin</artifactId>
204 <version>2.10</version>
205 </plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500206
Instrumentala20accc2018-03-26 13:49:56 -0700207 <!-- Maven surefire plugin for testing -->
208 <plugin>
209 <artifactId>maven-surefire-plugin</artifactId>
210 <version>2.17</version>
211 <configuration>
IanHowelle6123772018-04-03 15:26:47 -0500212 <skipTests>false</skipTests>
213 <includes>
214 <include>**/JU*.java</include>
215 </includes>
216 <excludes>
217 </excludes>
Paul Vaduva10a5f722018-11-12 16:20:10 +0100218 <useSystemClassLoader>false</useSystemClassLoader>
Instrumentala20accc2018-03-26 13:49:56 -0700219 </configuration>
220 </plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500221
222 <!--This plugin's configuration is used to store Eclipse m2e settings
Instrumentala20accc2018-03-26 13:49:56 -0700223 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>
IanHowell3901cf82018-04-03 11:24:27 -0500254 <plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500255 <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>
Instrumentala20accc2018-03-26 13:49:56 -0700312 </plugins>
IanHowell3901cf82018-04-03 11:24:27 -0500313 </pluginManagement>
Instrumentala20accc2018-03-26 13:49:56 -0700314 </build>
315
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000316 <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>
IanHowell3901cf82018-04-03 11:24:27 -0500332
Instrumentala20accc2018-03-26 13:49:56 -0700333</project>