blob: 26fc7c7485f8eed282b937ccd92ec919b2e3a693 [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====================================================
Instrumentale9ae0482019-08-02 14:46:27 -05003 * 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"
Instrumentale9ae0482019-08-02 14:46:27 -050015 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>
18 <groupId>org.onap.aaf.authz</groupId>
19 <artifactId>authparent</artifactId>
John J. Franey62168142020-04-23 16:09:38 -040020 <version>2.1.20-SNAPSHOT</version>
Instrumentale9ae0482019-08-02 14:46:27 -050021 <relativePath>../pom.xml</relativePath>
22 </parent>
Instrumental71037c32018-03-26 13:51:48 -070023
Instrumentale9ae0482019-08-02 14:46:27 -050024 <artifactId>aaf-auth-service</artifactId>
25 <name>AAF Auth Service</name>
26 <description>Core API Component for AAF Auth</description>
Instrumental71037c32018-03-26 13:51:48 -070027
Instrumentale9ae0482019-08-02 14:46:27 -050028 <properties>
29 <maven.test.failure.ignore>true</maven.test.failure.ignore>
30 <!-- <sonar.skip>true</sonar.skip> -->
31 <!-- 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 -->
36 <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>
38 <!-- Note: This list should match jacoco-maven-plugin's exclusion list
39 below -->
40 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
41 <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>
gabe.maurer2e233282018-04-03 11:18:38 -050046
Instrumentale9ae0482019-08-02 14:46:27 -050047 </properties>
Instrumental71037c32018-03-26 13:51:48 -070048
Instrumentale9ae0482019-08-02 14:46:27 -050049 <dependencies>
50 <dependency>
51 <groupId>org.onap.aaf.authz</groupId>
52 <artifactId>aaf-auth-client</artifactId>
53 </dependency>
Instrumental71037c32018-03-26 13:51:48 -070054
Instrumentale9ae0482019-08-02 14:46:27 -050055 <dependency>
56 <groupId>org.onap.aaf.authz</groupId>
57 <artifactId>aaf-auth-core</artifactId>
58 </dependency>
Instrumental71037c32018-03-26 13:51:48 -070059
Instrumentale9ae0482019-08-02 14:46:27 -050060 <!-- Add the Organizations you wish to support. You can delete ONAP if
61 you have something else Match with Property Entry: Organization.<root ns>,
62 i.e. Organization.onap.org=org.onap.org.DefaultOrg -->
63 <dependency>
64 <groupId>org.onap.aaf.authz</groupId>
65 <artifactId>aaf-auth-deforg</artifactId>
66 </dependency>
67
68 <dependency>
69 <groupId>org.onap.aaf.authz</groupId>
70 <artifactId>aaf-auth-cass</artifactId>
71 </dependency>
Instrumental71037c32018-03-26 13:51:48 -070072
Instrumentale9ae0482019-08-02 14:46:27 -050073 <dependency>
74 <groupId>org.onap.aaf.authz</groupId>
75 <artifactId>aaf-auth-oauth</artifactId>
76 </dependency>
Instrumental71037c32018-03-26 13:51:48 -070077
Instrumentale9ae0482019-08-02 14:46:27 -050078 <dependency>
79 <groupId>org.onap.aaf.authz</groupId>
80 <artifactId>aaf-misc-rosetta</artifactId>
81 </dependency>
Instrumental71037c32018-03-26 13:51:48 -070082
Instrumentale9ae0482019-08-02 14:46:27 -050083 <dependency>
84 <groupId>org.onap.aaf.authz</groupId>
85 <artifactId>aaf-cadi-aaf</artifactId>
86 </dependency>
Instrumental71037c32018-03-26 13:51:48 -070087
Instrumentale9ae0482019-08-02 14:46:27 -050088 <dependency>
89 <groupId>org.eclipse.jetty</groupId>
90 <artifactId>jetty-servlet</artifactId>
91 </dependency>
Instrumental71037c32018-03-26 13:51:48 -070092
Instrumentale9ae0482019-08-02 14:46:27 -050093 </dependencies>
Instrumental71037c32018-03-26 13:51:48 -070094
Instrumentale9ae0482019-08-02 14:46:27 -050095 <build>
96 <plugins>
97 <plugin>
98 <groupId>org.apache.maven.plugins</groupId>
99 <artifactId>maven-jar-plugin</artifactId>
100 <configuration>
101 <excludes>
102 <exclude>*.properties</exclude>
103 </excludes>
104 </configuration>
105 <version>2.3.1</version>
106 </plugin>
107 <plugin>
108 <groupId>org.codehaus.mojo</groupId>
109 <artifactId>appassembler-maven-plugin</artifactId>
110 <configuration>
111 <programs>
112 <program>
113 <mainClass>org.onap.aaf.auth.service.AAF_Service</mainClass>
114 <name>service</name>
115 <commandLineArguments>
116 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.aaf.service.props</commandLineArgument>
117 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/service</commandLineArgument>
118 <commandLineArgument>cadi_etc_dir=${project.ext_root_dir}/etc</commandLineArgument>
119 </commandLineArguments>
120 </program>
121 </programs>
122 </configuration>
123 </plugin>
124 <plugin>
125 <groupId>org.jacoco</groupId>
126 <artifactId>jacoco-maven-plugin</artifactId>
127 <configuration>
128 <excludes>
129 <exclude>**/gen/**</exclude>
130 <exclude>**/generated-sources/**</exclude>
131 <exclude>**/yang-gen/**</exclude>
132 <exclude>**/pax/**</exclude>
133 </excludes>
134 </configuration>
135 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500136
Instrumentale9ae0482019-08-02 14:46:27 -0500137 <execution>
138 <id>pre-unit-test</id>
139 <goals>
140 <goal>prepare-agent</goal>
141 </goals>
142 <configuration>
143 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
144 <propertyName>surefireArgLine</propertyName>
145 </configuration>
146 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500147
148
Instrumentale9ae0482019-08-02 14:46:27 -0500149 <execution>
150 <id>post-unit-test</id>
151 <phase>test</phase>
152 <goals>
153 <goal>report</goal>
154 </goals>
155 <configuration>
156 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
157 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
158 </configuration>
159 </execution>
160 <execution>
161 <id>pre-integration-test</id>
162 <phase>pre-integration-test</phase>
163 <goals>
164 <goal>prepare-agent</goal>
165 </goals>
166 <configuration>
167 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
168 <propertyName>failsafeArgLine</propertyName>
169 </configuration>
170 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500171
Instrumentale9ae0482019-08-02 14:46:27 -0500172 <execution>
173 <id>post-integration-test</id>
174 <phase>post-integration-test</phase>
175 <goals>
176 <goal>report</goal>
177 </goals>
178 <configuration>
179 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
180 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
181 </configuration>
182 </execution>
183 </executions>
184 </plugin>
185 <!-- plugin> <groupId>com.spotify</groupId> <artifactId>docker-maven-plugin</artifactId>
186 </plugin -->
187 </plugins>
188 </build>
gabe.maurer2e233282018-04-03 11:18:38 -0500189
Instrumentale9ae0482019-08-02 14:46:27 -0500190 <distributionManagement>
191 <repository>
192 <id>ecomp-releases</id>
193 <name>AAF Release Repository</name>
194 <url>${nexusproxy}${releaseNexusPath}</url>
195 </repository>
196 <snapshotRepository>
197 <id>ecomp-snapshots</id>
198 <name>AAF Snapshot Repository</name>
199 <url>${nexusproxy}${snapshotNexusPath}</url>
200 </snapshotRepository>
201 <site>
202 <id>ecomp-site</id>
203 <url>dav:${nexusproxy}${sitePath}</url>
204 </site>
205 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700206
Instrumental71037c32018-03-26 13:51:48 -0700207</project>