blob: 7d8f453441676be972fec057922f99d1c2e41543 [file] [log] [blame]
Instrumental71037c32018-03-26 13:51:48 -07001<?xml version="1.0" encoding="UTF-8"?>
gabe.maurer2e233282018-04-03 11:18:38 -05002<!-- * ============LICENSE_START====================================================
3 * org.onap.aaf * ===========================================================================
4 * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. * ===========================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License"); * you may
6 not use this file except in compliance with the License. * You may obtain
7 a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *
8 * Unless required by applicable law or agreed to in writing, software * distributed
9 under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES
10 OR CONDITIONS OF ANY KIND, either express or implied. * See the License for
11 the specific language governing permissions and * limitations under the License.
12 * ============LICENSE_END====================================================
13 * -->
Instrumental71037c32018-03-26 13:51:48 -070014<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
16 <modelVersion>4.0.0</modelVersion>
17 <parent>
Sai Gandham83fc0252018-04-09 16:28:48 +000018 <groupId>org.onap.aaf.authz</groupId>
19 <artifactId>authparent</artifactId>
Instrumental71037c32018-03-26 13:51:48 -070020 <version>2.1.0-SNAPSHOT</version>
21 <relativePath>../pom.xml</relativePath>
22 </parent>
23
24 <artifactId>aaf-auth-service</artifactId>
25 <name>AAF Auth Service</name>
26 <description>Core API Component for AAF Auth</description>
27
28 <properties>
29 <maven.test.failure.ignore>true</maven.test.failure.ignore>
Sai Gandhamf44b9272018-04-12 16:42:07 +000030 <!-- <sonar.skip>true</sonar.skip> -->
gabe.maurer2e233282018-04-03 11:18:38 -050031 <!-- SONAR -->
32 <jacoco.version>0.7.7.201606060606</jacoco.version>
33 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
34 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
35 <!-- Default Sonar configuration -->
Sai Gandham61f8fdf2018-04-03 12:07:07 -050036 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
37 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
gabe.maurer2e233282018-04-03 11:18:38 -050038 <!-- Note: This list should match jacoco-maven-plugin's exclusion list
39 below -->
40 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000041 <nexusproxy>https://nexus.onap.org</nexusproxy>
42 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
43 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
44 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Sai Gandham30dca6e2018-04-09 21:22:48 +000045 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
gabe.maurer2e233282018-04-03 11:18:38 -050046
Instrumental71037c32018-03-26 13:51:48 -070047 </properties>
48
49 <dependencies>
50 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000051 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070052 <artifactId>aaf-auth-client</artifactId>
su622b40077be2018-04-08 13:50:31 -040053 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070054 </dependency>
55
56 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000057 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070058 <artifactId>aaf-auth-core</artifactId>
su622b40077be2018-04-08 13:50:31 -040059 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070060 </dependency>
61
62 <!-- Add the Organizations you wish to support. You can delete ONAP if
63 you have something else Match with Property Entry: Organization.<root ns>,
64 i.e. Organization.onap.org=org.onap.org.DefaultOrg -->
65 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000066 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070067 <artifactId>aaf-auth-deforg</artifactId>
su622b40077be2018-04-08 13:50:31 -040068 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070069 </dependency>
70
71 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000072 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070073 <artifactId>aaf-auth-cass</artifactId>
su622b40077be2018-04-08 13:50:31 -040074 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070075 </dependency>
76
77 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000078 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070079 <artifactId>aaf-auth-oauth</artifactId>
su622b40077be2018-04-08 13:50:31 -040080 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070081 </dependency>
82
83 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000084 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070085 <artifactId>aaf-misc-rosetta</artifactId>
su622b40077be2018-04-08 13:50:31 -040086 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070087 </dependency>
88
89 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000090 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070091 <artifactId>aaf-cadi-aaf</artifactId>
su622b40077be2018-04-08 13:50:31 -040092 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070093 </dependency>
94
95 <dependency>
96 <groupId>org.eclipse.jetty</groupId>
97 <artifactId>jetty-servlet</artifactId>
98 </dependency>
99
Instrumental71037c32018-03-26 13:51:48 -0700100 </dependencies>
101
102 <build>
103 <plugins>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-jar-plugin</artifactId>
107 <configuration>
108 <excludes>
109 <exclude>*.properties</exclude>
110 </excludes>
111 </configuration>
112 <version>2.3.1</version>
113 </plugin>
114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-deploy-plugin</artifactId>
117 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -0500118 <skip>false</skip>
Instrumental71037c32018-03-26 13:51:48 -0700119 </configuration>
120 </plugin>
121 <plugin>
122 <groupId>org.codehaus.mojo</groupId>
123 <artifactId>appassembler-maven-plugin</artifactId>
124 <configuration>
125 <programs>
126 <program>
127 <mainClass>org.onap.aaf.auth.service.AAF_Service</mainClass>
128 <name>service</name>
129 <commandLineArguments>
Instrumentalac836d02018-04-06 05:27:41 -0500130 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.service.props</commandLineArgument>
Instrumental924b18d2018-04-05 20:17:18 -0500131 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/service</commandLineArgument>
Instrumental71037c32018-03-26 13:51:48 -0700132 </commandLineArguments>
133 </program>
134 </programs>
135 </configuration>
136 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000137 <plugin>
138 <groupId>org.sonatype.plugins</groupId>
139 <artifactId>nexus-staging-maven-plugin</artifactId>
140 <version>1.6.7</version>
141 <extensions>true</extensions>
142 <configuration>
143 <nexusUrl>${nexusproxy}</nexusUrl>
144 <stagingProfileId>176c31dfe190a</stagingProfileId>
145 <serverId>ecomp-staging</serverId>
146 </configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500147 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000148 <plugin>
149 <groupId>org.jacoco</groupId>
150 <artifactId>jacoco-maven-plugin</artifactId>
gabe.maurer2e233282018-04-03 11:18:38 -0500151 <version>${jacoco.version}</version>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000152 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500153 <excludes>
154 <exclude>**/gen/**</exclude>
155 <exclude>**/generated-sources/**</exclude>
156 <exclude>**/yang-gen/**</exclude>
157 <exclude>**/pax/**</exclude>
158 </excludes>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000159 </configuration>
160 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500161
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000162 <execution>
163 <id>pre-unit-test</id>
164 <goals>
165 <goal>prepare-agent</goal>
166 </goals>
167 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500168 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
169 <propertyName>surefireArgLine</propertyName>
170 </configuration>
171 </execution>
172
173
174 <execution>
175 <id>post-unit-test</id>
176 <phase>test</phase>
177 <goals>
178 <goal>report</goal>
179 </goals>
180 <configuration>
181 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
182 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000183 </configuration>
184 </execution>
185 <execution>
186 <id>pre-integration-test</id>
187 <phase>pre-integration-test</phase>
188 <goals>
189 <goal>prepare-agent</goal>
190 </goals>
191 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500192 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
193 <propertyName>failsafeArgLine</propertyName>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000194 </configuration>
195 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500196
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000197 <execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500198 <id>post-integration-test</id>
199 <phase>post-integration-test</phase>
200 <goals>
201 <goal>report</goal>
202 </goals>
203 <configuration>
204 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
205 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
206 </configuration>
207 </execution>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000208 </executions>
209 </plugin>
gabe.maurer2e233282018-04-03 11:18:38 -0500210 <!-- plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId>
211 </plugin -->
Instrumental71037c32018-03-26 13:51:48 -0700212 </plugins>
213 </build>
gabe.maurer2e233282018-04-03 11:18:38 -0500214
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000215 <distributionManagement>
216 <repository>
217 <id>ecomp-releases</id>
218 <name>AAF Release Repository</name>
219 <url>${nexusproxy}${releaseNexusPath}</url>
220 </repository>
221 <snapshotRepository>
222 <id>ecomp-snapshots</id>
223 <name>AAF Snapshot Repository</name>
224 <url>${nexusproxy}${snapshotNexusPath}</url>
225 </snapshotRepository>
226 <site>
227 <id>ecomp-site</id>
228 <url>dav:${nexusproxy}${sitePath}</url>
229 </site>
230 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700231
Instrumental71037c32018-03-26 13:51:48 -0700232</project>