blob: 873ffff7f2ec24c0832593733f34fb0edf256873 [file] [log] [blame]
Instrumental71037c32018-03-26 13:51:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!-- * ============LICENSE_START====================================================
3 * org.onap.aaf * ===========================================================================
4 * Copyright (c) 2018 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 * -->
14<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-hello</artifactId>
25 <name>AAF Auth Hello Service</name>
26 <description>Hello Service Component for testing AAF Auth Access</description>
27
28 <properties>
gabe.maurer2e233282018-04-03 11:18:38 -050029 <skipTests>false</skipTests>
Sai Gandham1ef69d22018-04-03 16:25:33 -050030 <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>
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.cadi</groupId>
Instrumental71037c32018-03-26 13:51:48 -070056 <artifactId>aaf-cadi-aaf</artifactId>
57 </dependency>
58
59 </dependencies>
60
61 <build>
62 <plugins>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-jar-plugin</artifactId>
66 <configuration>
67 <includes>
68 <include>**/*.class</include>
69 </includes>
70 </configuration>
71 <version>2.3.1</version>
72 </plugin>
73
74 <!--This plugin's configuration is used to store Eclipse m2e settings
75 only. It has no influence on the Maven build itself. -->
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-deploy-plugin</artifactId>
79 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -050080 <skip>false</skip>
Instrumental71037c32018-03-26 13:51:48 -070081 </configuration>
82 </plugin>
83 <plugin>
84 <groupId>org.codehaus.mojo</groupId>
85 <artifactId>appassembler-maven-plugin</artifactId>
86 <configuration>
87 <programs>
88 <program>
89 <mainClass>org.onap.aaf.auth.hello.AAF_Hello</mainClass>
90 <name>hello</name>
91 <commandLineArguments>
92 <commandLineArgument>cadi_prop_files=${project.conf_dir}/org.osaaf.hello.props</commandLineArgument>
93 </commandLineArguments>
94 </program>
95 </programs>
96 </configuration>
97 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000098 <plugin>
99 <groupId>org.sonatype.plugins</groupId>
100 <artifactId>nexus-staging-maven-plugin</artifactId>
101 <version>1.6.7</version>
102 <extensions>true</extensions>
103 <configuration>
104 <nexusUrl>${nexusproxy}</nexusUrl>
105 <stagingProfileId>176c31dfe190a</stagingProfileId>
106 <serverId>ecomp-staging</serverId>
107 </configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500108 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000109 <plugin>
110 <groupId>org.jacoco</groupId>
111 <artifactId>jacoco-maven-plugin</artifactId>
gabe.maurer2e233282018-04-03 11:18:38 -0500112 <version>${jacoco.version}</version>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000113 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500114 <excludes>
115 <exclude>**/gen/**</exclude>
116 <exclude>**/generated-sources/**</exclude>
117 <exclude>**/yang-gen/**</exclude>
118 <exclude>**/pax/**</exclude>
119 </excludes>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000120 </configuration>
121 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500122
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000123 <execution>
124 <id>pre-unit-test</id>
125 <goals>
126 <goal>prepare-agent</goal>
127 </goals>
128 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500129 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
130 <propertyName>surefireArgLine</propertyName>
131 </configuration>
132 </execution>
133
134
135 <execution>
136 <id>post-unit-test</id>
137 <phase>test</phase>
138 <goals>
139 <goal>report</goal>
140 </goals>
141 <configuration>
142 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
143 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000144 </configuration>
145 </execution>
146 <execution>
147 <id>pre-integration-test</id>
148 <phase>pre-integration-test</phase>
149 <goals>
150 <goal>prepare-agent</goal>
151 </goals>
152 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500153 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
154 <propertyName>failsafeArgLine</propertyName>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000155 </configuration>
156 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500157
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000158 <execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500159 <id>post-integration-test</id>
160 <phase>post-integration-test</phase>
161 <goals>
162 <goal>report</goal>
163 </goals>
164 <configuration>
165 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
166 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
167 </configuration>
168 </execution>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000169 </executions>
170 </plugin>
Instrumental71037c32018-03-26 13:51:48 -0700171 </plugins>
172 </build>
173
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000174 <distributionManagement>
175 <repository>
176 <id>ecomp-releases</id>
177 <name>AAF Release Repository</name>
178 <url>${nexusproxy}${releaseNexusPath}</url>
179 </repository>
180 <snapshotRepository>
181 <id>ecomp-snapshots</id>
182 <name>AAF Snapshot Repository</name>
183 <url>${nexusproxy}${snapshotNexusPath}</url>
184 </snapshotRepository>
185 <site>
186 <id>ecomp-site</id>
187 <url>dav:${nexusproxy}${sitePath}</url>
188 </site>
189 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700190</project>