blob: f5129bf57d626825e737442111caeef88ffe7fc0 [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-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>
Sai Gandham83fc0252018-04-09 16:28: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>
Instrumental71037c32018-03-26 13:51:48 -070051 <artifactId>aaf-auth-core</artifactId>
su622b40077be2018-04-08 13:50:31 -040052 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070053 </dependency>
54
55 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000056 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070057 <artifactId>aaf-auth-cass</artifactId>
su622b40077be2018-04-08 13:50:31 -040058 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070059 </dependency>
60
61 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000062 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070063 <artifactId>aaf-cadi-aaf</artifactId>
su622b40077be2018-04-08 13:50:31 -040064 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070065 </dependency>
66 </dependencies>
67
68 <build>
69 <plugins>
70 <plugin>
71 <groupId>org.jvnet.jaxb2.maven2</groupId>
72 <artifactId>maven-jaxb2-plugin</artifactId>
73 <version>0.8.2</version>
74 <executions>
75 <execution>
76 <goals>
77 <goal>generate</goal>
78 </goals>
79 </execution>
80 </executions>
81 <configuration>
82 <schemaDirectory>src/main/xsd</schemaDirectory>
83 </configuration>
84 </plugin>
85
86
87 <plugin>
88 <groupId>org.apache.maven.plugins</groupId>
89 <artifactId>maven-deploy-plugin</artifactId>
90 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -050091 <skip>false</skip>
Instrumental71037c32018-03-26 13:51:48 -070092 </configuration>
93 </plugin>
94 <plugin>
95 <groupId>org.codehaus.mojo</groupId>
96 <artifactId>appassembler-maven-plugin</artifactId>
97 <configuration>
98 <programs>
99 <program>
100 <mainClass>org.onap.aaf.auth.locate.AAF_Locate</mainClass>
101 <id>locate</id>
102 <commandLineArguments>
Instrumental924b18d2018-04-05 20:17:18 -0500103 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.locate.props</commandLineArgument>
104 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/locate</commandLineArgument>
Instrumental71037c32018-03-26 13:51:48 -0700105 </commandLineArguments>
106 </program>
107 </programs>
108 </configuration>
109 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000110 <plugin>
111 <groupId>org.sonatype.plugins</groupId>
112 <artifactId>nexus-staging-maven-plugin</artifactId>
113 <version>1.6.7</version>
114 <extensions>true</extensions>
115 <configuration>
116 <nexusUrl>${nexusproxy}</nexusUrl>
117 <stagingProfileId>176c31dfe190a</stagingProfileId>
118 <serverId>ecomp-staging</serverId>
119 </configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500120 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000121 <plugin>
122 <groupId>org.jacoco</groupId>
123 <artifactId>jacoco-maven-plugin</artifactId>
gabe.maurer2e233282018-04-03 11:18:38 -0500124 <version>${jacoco.version}</version>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000125 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500126 <excludes>
127 <exclude>**/gen/**</exclude>
128 <exclude>**/generated-sources/**</exclude>
129 <exclude>**/yang-gen/**</exclude>
130 <exclude>**/pax/**</exclude>
131 </excludes>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000132 </configuration>
133 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500134
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000135 <execution>
136 <id>pre-unit-test</id>
137 <goals>
138 <goal>prepare-agent</goal>
139 </goals>
140 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500141 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
142 <propertyName>surefireArgLine</propertyName>
143 </configuration>
144 </execution>
145
146
147 <execution>
148 <id>post-unit-test</id>
149 <phase>test</phase>
150 <goals>
151 <goal>report</goal>
152 </goals>
153 <configuration>
154 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
155 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000156 </configuration>
157 </execution>
158 <execution>
159 <id>pre-integration-test</id>
160 <phase>pre-integration-test</phase>
161 <goals>
162 <goal>prepare-agent</goal>
163 </goals>
164 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500165 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
166 <propertyName>failsafeArgLine</propertyName>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000167 </configuration>
168 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500169
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000170 <execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500171 <id>post-integration-test</id>
172 <phase>post-integration-test</phase>
173 <goals>
174 <goal>report</goal>
175 </goals>
176 <configuration>
177 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
178 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
179 </configuration>
180 </execution>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000181 </executions>
182 </plugin>
Instrumental71037c32018-03-26 13:51:48 -0700183 </plugins>
184 </build>
185
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000186 <distributionManagement>
187 <repository>
188 <id>ecomp-releases</id>
189 <name>AAF Release Repository</name>
190 <url>${nexusproxy}${releaseNexusPath}</url>
191 </repository>
192 <snapshotRepository>
193 <id>ecomp-snapshots</id>
194 <name>AAF Snapshot Repository</name>
195 <url>${nexusproxy}${snapshotNexusPath}</url>
196 </snapshotRepository>
197 <site>
198 <id>ecomp-site</id>
199 <url>dav:${nexusproxy}${sitePath}</url>
200 </site>
201 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700202</project>