blob: 6ebd7b8a09efa5d939930e8405b5e4476c76cf21 [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>
Sai Gandham103d3ca2018-04-06 14:00:44 -050045 <sitePath>/content/sites/site/org/onap/aaf/authz/auth/${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>
su622b40077be2018-04-08 13:50:31 -040052 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070053 </dependency>
54
55 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050056 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumental71037c32018-03-26 13:51:48 -070057 <artifactId>aaf-cadi-aaf</artifactId>
su622b40077be2018-04-08 13:50:31 -040058 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070059 </dependency>
60
61 </dependencies>
62
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-jar-plugin</artifactId>
68 <configuration>
69 <includes>
70 <include>**/*.class</include>
71 </includes>
72 </configuration>
73 <version>2.3.1</version>
74 </plugin>
75
76 <!--This plugin's configuration is used to store Eclipse m2e settings
77 only. It has no influence on the Maven build itself. -->
78 <plugin>
79 <groupId>org.apache.maven.plugins</groupId>
80 <artifactId>maven-deploy-plugin</artifactId>
81 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -050082 <skip>false</skip>
Instrumental71037c32018-03-26 13:51:48 -070083 </configuration>
84 </plugin>
85 <plugin>
86 <groupId>org.codehaus.mojo</groupId>
87 <artifactId>appassembler-maven-plugin</artifactId>
88 <configuration>
89 <programs>
90 <program>
91 <mainClass>org.onap.aaf.auth.hello.AAF_Hello</mainClass>
92 <name>hello</name>
93 <commandLineArguments>
Instrumental924b18d2018-04-05 20:17:18 -050094 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.hello.props</commandLineArgument>
95 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/hello</commandLineArgument>
Instrumental71037c32018-03-26 13:51:48 -070096 </commandLineArguments>
97 </program>
98 </programs>
99 </configuration>
100 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000101 <plugin>
102 <groupId>org.sonatype.plugins</groupId>
103 <artifactId>nexus-staging-maven-plugin</artifactId>
104 <version>1.6.7</version>
105 <extensions>true</extensions>
106 <configuration>
107 <nexusUrl>${nexusproxy}</nexusUrl>
108 <stagingProfileId>176c31dfe190a</stagingProfileId>
109 <serverId>ecomp-staging</serverId>
110 </configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500111 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000112 <plugin>
113 <groupId>org.jacoco</groupId>
114 <artifactId>jacoco-maven-plugin</artifactId>
gabe.maurer2e233282018-04-03 11:18:38 -0500115 <version>${jacoco.version}</version>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000116 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500117 <excludes>
118 <exclude>**/gen/**</exclude>
119 <exclude>**/generated-sources/**</exclude>
120 <exclude>**/yang-gen/**</exclude>
121 <exclude>**/pax/**</exclude>
122 </excludes>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000123 </configuration>
124 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500125
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000126 <execution>
127 <id>pre-unit-test</id>
128 <goals>
129 <goal>prepare-agent</goal>
130 </goals>
131 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500132 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
133 <propertyName>surefireArgLine</propertyName>
134 </configuration>
135 </execution>
136
137
138 <execution>
139 <id>post-unit-test</id>
140 <phase>test</phase>
141 <goals>
142 <goal>report</goal>
143 </goals>
144 <configuration>
145 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
146 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000147 </configuration>
148 </execution>
149 <execution>
150 <id>pre-integration-test</id>
151 <phase>pre-integration-test</phase>
152 <goals>
153 <goal>prepare-agent</goal>
154 </goals>
155 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500156 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
157 <propertyName>failsafeArgLine</propertyName>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000158 </configuration>
159 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500160
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000161 <execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500162 <id>post-integration-test</id>
163 <phase>post-integration-test</phase>
164 <goals>
165 <goal>report</goal>
166 </goals>
167 <configuration>
168 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
169 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
170 </configuration>
171 </execution>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000172 </executions>
173 </plugin>
Instrumental71037c32018-03-26 13:51:48 -0700174 </plugins>
175 </build>
176
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000177 <distributionManagement>
178 <repository>
179 <id>ecomp-releases</id>
180 <name>AAF Release Repository</name>
181 <url>${nexusproxy}${releaseNexusPath}</url>
182 </repository>
183 <snapshotRepository>
184 <id>ecomp-snapshots</id>
185 <name>AAF Snapshot Repository</name>
186 <url>${nexusproxy}${snapshotNexusPath}</url>
187 </snapshotRepository>
188 <site>
189 <id>ecomp-site</id>
190 <url>dav:${nexusproxy}${sitePath}</url>
191 </site>
192 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700193</project>