blob: ce3fe032f30890ed5e8a4e660178b94903299d2d [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>
Instrumental17ca7442018-03-29 16:54:19 -050018 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -070019 <artifactId>parent</artifactId>
20 <version>2.1.0-SNAPSHOT</version>
21 <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 Gandham1ef69d22018-04-03 16:25:33 -050031 <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>
45 <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>
Instrumental17ca7442018-03-29 16:54:19 -050050 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -070051 <artifactId>aaf-auth-core</artifactId>
52 </dependency>
53
54 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050055 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -070056 <artifactId>aaf-auth-cass</artifactId>
57 </dependency>
58
59 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050060 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumental71037c32018-03-26 13:51:48 -070061 <artifactId>aaf-cadi-aaf</artifactId>
62 </dependency>
63 </dependencies>
64
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.jvnet.jaxb2.maven2</groupId>
69 <artifactId>maven-jaxb2-plugin</artifactId>
70 <version>0.8.2</version>
71 <executions>
72 <execution>
73 <goals>
74 <goal>generate</goal>
75 </goals>
76 </execution>
77 </executions>
78 <configuration>
79 <schemaDirectory>src/main/xsd</schemaDirectory>
80 </configuration>
81 </plugin>
82
83
84 <plugin>
85 <groupId>org.apache.maven.plugins</groupId>
86 <artifactId>maven-deploy-plugin</artifactId>
87 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -050088 <skip>false</skip>
Instrumental71037c32018-03-26 13:51:48 -070089 </configuration>
90 </plugin>
91 <plugin>
92 <groupId>org.codehaus.mojo</groupId>
93 <artifactId>appassembler-maven-plugin</artifactId>
94 <configuration>
95 <programs>
96 <program>
97 <mainClass>org.onap.aaf.auth.locate.AAF_Locate</mainClass>
98 <id>locate</id>
99 <commandLineArguments>
Instrumental924b18d2018-04-05 20:17:18 -0500100 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.locate.props</commandLineArgument>
101 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/locate</commandLineArgument>
Instrumental71037c32018-03-26 13:51:48 -0700102 </commandLineArguments>
103 </program>
104 </programs>
105 </configuration>
106 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000107 <plugin>
108 <groupId>org.sonatype.plugins</groupId>
109 <artifactId>nexus-staging-maven-plugin</artifactId>
110 <version>1.6.7</version>
111 <extensions>true</extensions>
112 <configuration>
113 <nexusUrl>${nexusproxy}</nexusUrl>
114 <stagingProfileId>176c31dfe190a</stagingProfileId>
115 <serverId>ecomp-staging</serverId>
116 </configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500117 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000118 <plugin>
119 <groupId>org.jacoco</groupId>
120 <artifactId>jacoco-maven-plugin</artifactId>
gabe.maurer2e233282018-04-03 11:18:38 -0500121 <version>${jacoco.version}</version>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000122 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500123 <excludes>
124 <exclude>**/gen/**</exclude>
125 <exclude>**/generated-sources/**</exclude>
126 <exclude>**/yang-gen/**</exclude>
127 <exclude>**/pax/**</exclude>
128 </excludes>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000129 </configuration>
130 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500131
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000132 <execution>
133 <id>pre-unit-test</id>
134 <goals>
135 <goal>prepare-agent</goal>
136 </goals>
137 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500138 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
139 <propertyName>surefireArgLine</propertyName>
140 </configuration>
141 </execution>
142
143
144 <execution>
145 <id>post-unit-test</id>
146 <phase>test</phase>
147 <goals>
148 <goal>report</goal>
149 </goals>
150 <configuration>
151 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
152 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000153 </configuration>
154 </execution>
155 <execution>
156 <id>pre-integration-test</id>
157 <phase>pre-integration-test</phase>
158 <goals>
159 <goal>prepare-agent</goal>
160 </goals>
161 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500162 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
163 <propertyName>failsafeArgLine</propertyName>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000164 </configuration>
165 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500166
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000167 <execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500168 <id>post-integration-test</id>
169 <phase>post-integration-test</phase>
170 <goals>
171 <goal>report</goal>
172 </goals>
173 <configuration>
174 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
175 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
176 </configuration>
177 </execution>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000178 </executions>
179 </plugin>
Instrumental71037c32018-03-26 13:51:48 -0700180 </plugins>
181 </build>
182
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000183 <distributionManagement>
184 <repository>
185 <id>ecomp-releases</id>
186 <name>AAF Release Repository</name>
187 <url>${nexusproxy}${releaseNexusPath}</url>
188 </repository>
189 <snapshotRepository>
190 <id>ecomp-snapshots</id>
191 <name>AAF Snapshot Repository</name>
192 <url>${nexusproxy}${snapshotNexusPath}</url>
193 </snapshotRepository>
194 <site>
195 <id>ecomp-site</id>
196 <url>dav:${nexusproxy}${sitePath}</url>
197 </site>
198 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700199</project>