blob: b913b6c04ef692f6e1692abae97cdd3507d63b13 [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>
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-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 Gandhamf44b9272018-04-12 16:42:07 +000030 <!-- <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>
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>
Instrumental71037c32018-03-26 13:51:48 -070051 <artifactId>aaf-auth-core</artifactId>
52 </dependency>
53
54 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000055 <groupId>org.onap.aaf.authz</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>
Instrumental924b18d2018-04-05 20:17:18 -050092 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.hello.props</commandLineArgument>
93 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/hello</commandLineArgument>
Instrumental71037c32018-03-26 13:51:48 -070094 </commandLineArguments>
95 </program>
96 </programs>
97 </configuration>
98 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000099 <plugin>
100 <groupId>org.sonatype.plugins</groupId>
101 <artifactId>nexus-staging-maven-plugin</artifactId>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000102 <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>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000112 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500113 <excludes>
114 <exclude>**/gen/**</exclude>
115 <exclude>**/generated-sources/**</exclude>
116 <exclude>**/yang-gen/**</exclude>
117 <exclude>**/pax/**</exclude>
118 </excludes>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000119 </configuration>
120 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500121
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000122 <execution>
123 <id>pre-unit-test</id>
124 <goals>
125 <goal>prepare-agent</goal>
126 </goals>
127 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500128 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
129 <propertyName>surefireArgLine</propertyName>
130 </configuration>
131 </execution>
132
133
134 <execution>
135 <id>post-unit-test</id>
136 <phase>test</phase>
137 <goals>
138 <goal>report</goal>
139 </goals>
140 <configuration>
141 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
142 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000143 </configuration>
144 </execution>
145 <execution>
146 <id>pre-integration-test</id>
147 <phase>pre-integration-test</phase>
148 <goals>
149 <goal>prepare-agent</goal>
150 </goals>
151 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500152 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
153 <propertyName>failsafeArgLine</propertyName>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000154 </configuration>
155 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500156
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000157 <execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500158 <id>post-integration-test</id>
159 <phase>post-integration-test</phase>
160 <goals>
161 <goal>report</goal>
162 </goals>
163 <configuration>
164 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
165 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
166 </configuration>
167 </execution>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000168 </executions>
169 </plugin>
Instrumental71037c32018-03-26 13:51:48 -0700170 </plugins>
171 </build>
172
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000173 <distributionManagement>
174 <repository>
175 <id>ecomp-releases</id>
176 <name>AAF Release Repository</name>
177 <url>${nexusproxy}${releaseNexusPath}</url>
178 </repository>
179 <snapshotRepository>
180 <id>ecomp-snapshots</id>
181 <name>AAF Snapshot Repository</name>
182 <url>${nexusproxy}${snapshotNexusPath}</url>
183 </snapshotRepository>
184 <site>
185 <id>ecomp-site</id>
186 <url>dav:${nexusproxy}${sitePath}</url>
187 </site>
188 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700189</project>