blob: 7f76a28f07459c540f35051c2d51d7b2b92fa1c9 [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 -->
31 <jacoco.version>0.7.7.201606060606</jacoco.version>
32 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
33 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
34 <!-- Default Sonar configuration -->
35 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
36 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
37 <!-- Note: This list should match jacoco-maven-plugin's exclusion list
38 below -->
39 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000040 <nexusproxy>https://nexus.onap.org</nexusproxy>
41 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
42 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
43 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
44 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
Instrumental71037c32018-03-26 13:51:48 -070045 </properties>
46
47 <dependencies>
48 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050049 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -070050 <artifactId>aaf-auth-core</artifactId>
51 </dependency>
52
53 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050054 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -070055 <artifactId>aaf-auth-cass</artifactId>
56 </dependency>
57
58 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050059 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumental71037c32018-03-26 13:51:48 -070060 <artifactId>aaf-cadi-aaf</artifactId>
61 </dependency>
62 </dependencies>
63
64 <build>
65 <plugins>
66 <plugin>
67 <groupId>org.jvnet.jaxb2.maven2</groupId>
68 <artifactId>maven-jaxb2-plugin</artifactId>
69 <version>0.8.2</version>
70 <executions>
71 <execution>
72 <goals>
73 <goal>generate</goal>
74 </goals>
75 </execution>
76 </executions>
77 <configuration>
78 <schemaDirectory>src/main/xsd</schemaDirectory>
79 </configuration>
80 </plugin>
81
82
83 <plugin>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-deploy-plugin</artifactId>
86 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -050087 <skip>false</skip>
Instrumental71037c32018-03-26 13:51:48 -070088 </configuration>
89 </plugin>
90 <plugin>
91 <groupId>org.codehaus.mojo</groupId>
92 <artifactId>appassembler-maven-plugin</artifactId>
93 <configuration>
94 <programs>
95 <program>
96 <mainClass>org.onap.aaf.auth.locate.AAF_Locate</mainClass>
97 <id>locate</id>
98 <commandLineArguments>
99 <commandLineArgument>cadi_prop_files=${project.conf_dir}/org.osaaf.locate.props</commandLineArgument>
100 </commandLineArguments>
101 </program>
102 </programs>
103 </configuration>
104 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000105 <plugin>
106 <groupId>org.sonatype.plugins</groupId>
107 <artifactId>nexus-staging-maven-plugin</artifactId>
108 <version>1.6.7</version>
109 <extensions>true</extensions>
110 <configuration>
111 <nexusUrl>${nexusproxy}</nexusUrl>
112 <stagingProfileId>176c31dfe190a</stagingProfileId>
113 <serverId>ecomp-staging</serverId>
114 </configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500115 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000116 <plugin>
117 <groupId>org.jacoco</groupId>
118 <artifactId>jacoco-maven-plugin</artifactId>
gabe.maurer2e233282018-04-03 11:18:38 -0500119 <version>${jacoco.version}</version>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000120 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500121 <excludes>
122 <exclude>**/gen/**</exclude>
123 <exclude>**/generated-sources/**</exclude>
124 <exclude>**/yang-gen/**</exclude>
125 <exclude>**/pax/**</exclude>
126 </excludes>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000127 </configuration>
128 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500129
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000130 <execution>
131 <id>pre-unit-test</id>
132 <goals>
133 <goal>prepare-agent</goal>
134 </goals>
135 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500136 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
137 <propertyName>surefireArgLine</propertyName>
138 </configuration>
139 </execution>
140
141
142 <execution>
143 <id>post-unit-test</id>
144 <phase>test</phase>
145 <goals>
146 <goal>report</goal>
147 </goals>
148 <configuration>
149 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
150 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000151 </configuration>
152 </execution>
153 <execution>
154 <id>pre-integration-test</id>
155 <phase>pre-integration-test</phase>
156 <goals>
157 <goal>prepare-agent</goal>
158 </goals>
159 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500160 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
161 <propertyName>failsafeArgLine</propertyName>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000162 </configuration>
163 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500164
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000165 <execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500166 <id>post-integration-test</id>
167 <phase>post-integration-test</phase>
168 <goals>
169 <goal>report</goal>
170 </goals>
171 <configuration>
172 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
173 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
174 </configuration>
175 </execution>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000176 </executions>
177 </plugin>
Instrumental71037c32018-03-26 13:51:48 -0700178 </plugins>
179 </build>
180
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000181 <distributionManagement>
182 <repository>
183 <id>ecomp-releases</id>
184 <name>AAF Release Repository</name>
185 <url>${nexusproxy}${releaseNexusPath}</url>
186 </repository>
187 <snapshotRepository>
188 <id>ecomp-snapshots</id>
189 <name>AAF Snapshot Repository</name>
190 <url>${nexusproxy}${snapshotNexusPath}</url>
191 </snapshotRepository>
192 <site>
193 <id>ecomp-site</id>
194 <url>dav:${nexusproxy}${sitePath}</url>
195 </site>
196 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700197</project>