blob: 65100700c07893451a60a423b279dbc0bf7e6265 [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>
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-oauth</artifactId>
25 <name>AAF Auth OAuth Service</name>
26 <description>OAuth Component for AAF Auth</description>
27
28 <properties>
29 <project.swmVersion>25</project.swmVersion>
gabe.maurer2e233282018-04-03 11:18:38 -050030 <!-- SONAR -->
Sai Gandhamf44b9272018-04-12 16:42:07 +000031 <!-- <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 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-auth-cass</artifactId>
57 </dependency>
58
59 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000060 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070061 <artifactId>aaf-cadi-aaf</artifactId>
62 </dependency>
63 </dependencies>
64
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.maven.plugins</groupId>
69 <artifactId>maven-jar-plugin</artifactId>
70 <configuration>
71 <includes>
72 <include>**/*.class</include>
73 </includes>
74 </configuration>
75 <version>2.3.1</version>
76 </plugin>
77 <!--This plugin's configuration is used to store Eclipse m2e settings
78 only. It has no influence on the Maven build itself. -->
79 <plugin>
80 <groupId>org.apache.maven.plugins</groupId>
81 <artifactId>maven-deploy-plugin</artifactId>
82 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -050083 <skip>false</skip>
Instrumental71037c32018-03-26 13:51:48 -070084 </configuration>
85 </plugin>
86 <plugin>
87 <groupId>org.codehaus.mojo</groupId>
88 <artifactId>appassembler-maven-plugin</artifactId>
89 <configuration>
90 <programs>
91 <program>
92 <mainClass>org.onap.aaf.auth.oauth.AAF_OAuth</mainClass>
93 <name>oauth</name>
94 <commandLineArguments>
Instrumental924b18d2018-04-05 20:17:18 -050095 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.oauth.props</commandLineArgument>
96 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/oauth</commandLineArgument>
Instrumental71037c32018-03-26 13:51:48 -070097 </commandLineArguments>
98 </program>
99 </programs>
100 </configuration>
101 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000102 <plugin>
103 <groupId>org.sonatype.plugins</groupId>
104 <artifactId>nexus-staging-maven-plugin</artifactId>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000105 <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>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000115 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500116 <excludes>
117 <exclude>**/gen/**</exclude>
118 <exclude>**/generated-sources/**</exclude>
119 <exclude>**/yang-gen/**</exclude>
120 <exclude>**/pax/**</exclude>
121 </excludes>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000122 </configuration>
123 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500124
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000125 <execution>
126 <id>pre-unit-test</id>
127 <goals>
128 <goal>prepare-agent</goal>
129 </goals>
130 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500131 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
132 <propertyName>surefireArgLine</propertyName>
133 </configuration>
134 </execution>
135
136
137 <execution>
138 <id>post-unit-test</id>
139 <phase>test</phase>
140 <goals>
141 <goal>report</goal>
142 </goals>
143 <configuration>
144 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
145 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000146 </configuration>
147 </execution>
148 <execution>
149 <id>pre-integration-test</id>
150 <phase>pre-integration-test</phase>
151 <goals>
152 <goal>prepare-agent</goal>
153 </goals>
154 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500155 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
156 <propertyName>failsafeArgLine</propertyName>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000157 </configuration>
158 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500159
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000160 <execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500161 <id>post-integration-test</id>
162 <phase>post-integration-test</phase>
163 <goals>
164 <goal>report</goal>
165 </goals>
166 <configuration>
167 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
168 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
169 </configuration>
170 </execution>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000171 </executions>
172 </plugin>
Instrumental71037c32018-03-26 13:51:48 -0700173 </plugins>
174 </build>
175
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000176 <distributionManagement>
177 <repository>
178 <id>ecomp-releases</id>
179 <name>AAF Release Repository</name>
180 <url>${nexusproxy}${releaseNexusPath}</url>
181 </repository>
182 <snapshotRepository>
183 <id>ecomp-snapshots</id>
184 <name>AAF Snapshot Repository</name>
185 <url>${nexusproxy}${snapshotNexusPath}</url>
186 </snapshotRepository>
187 <site>
188 <id>ecomp-site</id>
189 <url>dav:${nexusproxy}${sitePath}</url>
190 </site>
191 </distributionManagement>
Sai Gandhame01703c2018-03-26 22:57:09 +0000192
Instrumental71037c32018-03-26 13:51:48 -0700193</project>