blob: c7a1346416b7ca914f9928d363ab8671ba7cf9fb [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>
Instrumentalb7440252018-06-14 15:05:33 -050020 <version>2.1.2-SNAPSHOT</version>
Instrumental71037c32018-03-26 13:51:48 -070021 <relativePath>../pom.xml</relativePath>
22 </parent>
23
24 <artifactId>aaf-auth-locate</artifactId>
25 <name>AAF Auth Locate</name>
26 <description>Location Service for AAF Auth Components</description>
27
28 <properties>
29 <maven.test.failure.ignore>true</maven.test.failure.ignore>
gabe.maurer2e233282018-04-03 11:18:38 -050030 <!-- SONAR -->
Sai Gandhamf44b9272018-04-12 16:42:07 +000031 <!-- <sonar.skip>true</sonar.skip> -->
gabe.maurer2e233282018-04-03 11:18:38 -050032 <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>
Instrumental71037c32018-03-26 13:51:48 -070046 </properties>
47
48 <dependencies>
49 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000050 <groupId>org.onap.aaf.authz</groupId>
Instrumental2c0dd5c2018-06-27 09:15:59 -050051 <artifactId>aaf-auth-client</artifactId>
52 </dependency>
53
54 <dependency>
55 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070056 <artifactId>aaf-auth-core</artifactId>
57 </dependency>
58
59 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000060 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070061 <artifactId>aaf-auth-cass</artifactId>
62 </dependency>
63
Instrumental65c40b32018-07-21 11:58:16 -050064 <!-- Add the Organizations you wish to support. You can delete ONAP if
65 you have something else Match with Property Entry: Organization.<root ns>,
66 i.e. Organization.onap.org=org.onap.org.DefaultOrg -->
67 <dependency>
68 <groupId>org.onap.aaf.authz</groupId>
69 <artifactId>aaf-auth-deforg</artifactId>
70 </dependency>
71
Instrumental71037c32018-03-26 13:51:48 -070072 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000073 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070074 <artifactId>aaf-cadi-aaf</artifactId>
75 </dependency>
Instrumental2c0dd5c2018-06-27 09:15:59 -050076
77 <dependency>
78 <groupId>org.onap.aaf.authz</groupId>
79 <artifactId>aaf-misc-rosetta</artifactId>
80 </dependency>
Instrumental71037c32018-03-26 13:51:48 -070081 </dependencies>
82
83 <build>
84 <plugins>
85 <plugin>
86 <groupId>org.jvnet.jaxb2.maven2</groupId>
87 <artifactId>maven-jaxb2-plugin</artifactId>
88 <version>0.8.2</version>
89 <executions>
90 <execution>
91 <goals>
92 <goal>generate</goal>
93 </goals>
94 </execution>
95 </executions>
96 <configuration>
97 <schemaDirectory>src/main/xsd</schemaDirectory>
98 </configuration>
99 </plugin>
100
Instrumental71037c32018-03-26 13:51:48 -0700101 <plugin>
102 <groupId>org.apache.maven.plugins</groupId>
103 <artifactId>maven-deploy-plugin</artifactId>
104 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -0500105 <skip>false</skip>
Instrumental71037c32018-03-26 13:51:48 -0700106 </configuration>
107 </plugin>
108 <plugin>
109 <groupId>org.codehaus.mojo</groupId>
110 <artifactId>appassembler-maven-plugin</artifactId>
111 <configuration>
112 <programs>
113 <program>
114 <mainClass>org.onap.aaf.auth.locate.AAF_Locate</mainClass>
115 <id>locate</id>
116 <commandLineArguments>
Instrumental4ad47632018-07-13 15:49:26 -0500117 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.aaf.locate.props</commandLineArgument>
Instrumental924b18d2018-04-05 20:17:18 -0500118 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/locate</commandLineArgument>
Instrumental4ad47632018-07-13 15:49:26 -0500119 <commandLineArgument>cadi_etc_dir=${project.ext_root_dir}/etc</commandLineArgument>
Instrumental71037c32018-03-26 13:51:48 -0700120 </commandLineArguments>
121 </program>
122 </programs>
123 </configuration>
124 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000125 <plugin>
126 <groupId>org.sonatype.plugins</groupId>
127 <artifactId>nexus-staging-maven-plugin</artifactId>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000128 <extensions>true</extensions>
129 <configuration>
130 <nexusUrl>${nexusproxy}</nexusUrl>
131 <stagingProfileId>176c31dfe190a</stagingProfileId>
132 <serverId>ecomp-staging</serverId>
133 </configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500134 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000135 <plugin>
136 <groupId>org.jacoco</groupId>
137 <artifactId>jacoco-maven-plugin</artifactId>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000138 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500139 <excludes>
140 <exclude>**/gen/**</exclude>
141 <exclude>**/generated-sources/**</exclude>
142 <exclude>**/yang-gen/**</exclude>
143 <exclude>**/pax/**</exclude>
144 </excludes>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000145 </configuration>
146 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500147
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000148 <execution>
149 <id>pre-unit-test</id>
150 <goals>
151 <goal>prepare-agent</goal>
152 </goals>
153 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500154 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
155 <propertyName>surefireArgLine</propertyName>
156 </configuration>
157 </execution>
158
159
160 <execution>
161 <id>post-unit-test</id>
162 <phase>test</phase>
163 <goals>
164 <goal>report</goal>
165 </goals>
166 <configuration>
167 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
168 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000169 </configuration>
170 </execution>
171 <execution>
172 <id>pre-integration-test</id>
173 <phase>pre-integration-test</phase>
174 <goals>
175 <goal>prepare-agent</goal>
176 </goals>
177 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500178 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
179 <propertyName>failsafeArgLine</propertyName>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000180 </configuration>
181 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500182
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000183 <execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500184 <id>post-integration-test</id>
185 <phase>post-integration-test</phase>
186 <goals>
187 <goal>report</goal>
188 </goals>
189 <configuration>
190 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
191 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
192 </configuration>
193 </execution>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000194 </executions>
195 </plugin>
Instrumental71037c32018-03-26 13:51:48 -0700196 </plugins>
197 </build>
198
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000199 <distributionManagement>
200 <repository>
201 <id>ecomp-releases</id>
202 <name>AAF Release Repository</name>
203 <url>${nexusproxy}${releaseNexusPath}</url>
204 </repository>
205 <snapshotRepository>
206 <id>ecomp-snapshots</id>
207 <name>AAF Snapshot Repository</name>
208 <url>${nexusproxy}${snapshotNexusPath}</url>
209 </snapshotRepository>
210 <site>
211 <id>ecomp-site</id>
212 <url>dav:${nexusproxy}${sitePath}</url>
213 </site>
214 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700215</project>