blob: 1db9ec65738c568bf538c1bb49ca0e422aaa3487 [file] [log] [blame]
Instrumental71037c32018-03-26 13:51:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 * ============LICENSE_START====================================================
4 * org.onap.aaf
5 * ===========================================================================
6 * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
7 * ===========================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END====================================================
20 *
21-->
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
Sai Gandham83fc0252018-04-09 16:28:48 +000026 <groupId>org.onap.aaf.authz</groupId>
27 <artifactId>authparent</artifactId>
Instrumental13b7a3b2019-03-14 13:36:18 -050028 <version>2.1.11-SNAPSHOT</version>
Instrumental71037c32018-03-26 13:51:48 -070029 <relativePath>../pom.xml</relativePath>
30 </parent>
31
32 <artifactId>aaf-auth-core</artifactId>
33 <name>AAF Auth Core</name>
34 <description>Core Library for AAF Auth Components</description>
35 <packaging>jar</packaging>
36
37 <developers>
38 <developer>
39 <name>Jonathan Gathman</name>
40 <email>jonathan.gathman@att.com</email>
41 <organization>ATT</organization>
42 <roles>
43 <role>Architect</role>
44 <role>Lead Developer</role>
45 </roles>
46 </developer>
47 <developer>
48 <name>Gabe Maurer</name>
49 <email>gabe.maurer@att.com</email>
50 <organization>ATT</organization>
51 <roles>
52 <role>Developer</role>
53 </roles>
54 </developer>
55 <developer>
56 <name>Ian Howell</name>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000057 <email>ian.howell@att.com</email>
Instrumental71037c32018-03-26 13:51:48 -070058 <organization>ATT</organization>
59 <roles>
60 <role>Developer</role>
61 </roles>
62 </developer>
Sai Gandhame01703c2018-03-26 22:57:09 +000063 <developer>
64 <name>Sai Gandham</name>
65 <email>sai.gandham@att.com</email>
66 <organization>ATT</organization>
67 <roles>
68 <role>Developer</role>
69 </roles>
70 </developer>
Instrumental71037c32018-03-26 13:51:48 -070071 </developers>
72
73
Sai Gandhamc434f3c2018-03-27 16:29:24 +000074 <properties>
75 <!-- SONAR -->
76 <jacoco.version>0.7.7.201606060606</jacoco.version>
77 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
78 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
79 <!-- Default Sonar configuration -->
Sai Gandham61f8fdf2018-04-03 12:07:07 -050080 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
81 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000082 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
83 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
84 <nexusproxy>https://nexus.onap.org</nexusproxy>
85 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
86 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
87 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Sai Gandham30dca6e2018-04-09 21:22:48 +000088 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000089 </properties>
90
Instrumental71037c32018-03-26 13:51:48 -070091 <dependencies>
92 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000093 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070094 <artifactId>aaf-misc-env</artifactId>
95 </dependency>
96 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000097 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070098 <artifactId>aaf-cadi-aaf</artifactId>
99 </dependency>
100
101 <dependency>
102 <groupId>javax.servlet</groupId>
Instrumental924b18d2018-04-05 20:17:18 -0500103 <artifactId>javax.servlet-api</artifactId>
Instrumental71037c32018-03-26 13:51:48 -0700104 </dependency>
105
106 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +0000107 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -0700108 <artifactId>aaf-misc-log4j</artifactId>
109 </dependency>
110
111 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +0000112 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -0700113 <artifactId>aaf-cadi-core</artifactId>
114 </dependency>
115
116 <dependency>
117 <groupId>org.eclipse.jetty</groupId>
118 <artifactId>jetty-servlet</artifactId>
119 <scope>compile</scope>
120 </dependency>
121
Instrumentalabf7c0e2018-04-03 21:30:32 -0500122 <dependency>
123 <groupId>org.slf4j</groupId>
124 <artifactId>slf4j-log4j12</artifactId>
125 </dependency>
Instrumental71037c32018-03-26 13:51:48 -0700126 </dependencies>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000127
128 <build>
129 <plugins>
Sai Gandham05c86472018-03-27 21:08:58 +0000130 <plugin>
131 <groupId>org.apache.maven.plugins</groupId>
132 <artifactId>maven-deploy-plugin</artifactId>
133 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -0500134 <skip>false</skip>
Sai Gandham05c86472018-03-27 21:08:58 +0000135 </configuration>
136 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000137 <plugin>
138 <groupId>org.sonatype.plugins</groupId>
139 <artifactId>nexus-staging-maven-plugin</artifactId>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000140 <extensions>true</extensions>
141 <configuration>
142 <nexusUrl>${nexusproxy}</nexusUrl>
143 <stagingProfileId>176c31dfe190a</stagingProfileId>
144 <serverId>ecomp-staging</serverId>
145 </configuration>
146 </plugin>
IanHowell93158482018-03-30 12:14:55 -0500147 <plugin>
148 <groupId>org.jacoco</groupId>
149 <artifactId>jacoco-maven-plugin</artifactId>
IanHowell93158482018-03-30 12:14:55 -0500150 <configuration>
151 <excludes>
152 <exclude>**/gen/**</exclude>
153 <exclude>**/generated-sources/**</exclude>
154 <exclude>**/yang-gen/**</exclude>
155 <exclude>**/pax/**</exclude>
156 </excludes>
157 </configuration>
158 <executions>
159 <execution>
160 <id>pre-unit-test</id>
161 <goals>
162 <goal>prepare-agent</goal>
163 </goals>
164 <configuration>
165 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
166 <propertyName>surefireArgLine</propertyName>
167 </configuration>
168 </execution>
169 <execution>
170 <id>post-unit-test</id>
171 <phase>test</phase>
172 <goals>
173 <goal>report</goal>
174 </goals>
175 <configuration>
176 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
177 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
178 </configuration>
179 </execution>
180 <execution>
181 <id>pre-integration-test</id>
182 <phase>pre-integration-test</phase>
183 <goals>
184 <goal>prepare-agent</goal>
185 </goals>
186 <configuration>
187 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
188 <propertyName>failsafeArgLine</propertyName>
189 </configuration>
190 </execution>
191
192 <execution>
193 <id>post-integration-test</id>
194 <phase>post-integration-test</phase>
195 <goals>
196 <goal>report</goal>
197 </goals>
198 <configuration>
199 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
200 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
201 </configuration>
202 </execution>
203 </executions>
204 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000205 </plugins>
206 </build>
207 <distributionManagement>
208 <repository>
209 <id>ecomp-releases</id>
210 <name>AAF Release Repository</name>
211 <url>${nexusproxy}${releaseNexusPath}</url>
212 </repository>
213 <snapshotRepository>
214 <id>ecomp-snapshots</id>
215 <name>AAF Snapshot Repository</name>
216 <url>${nexusproxy}${snapshotNexusPath}</url>
217 </snapshotRepository>
218 <site>
219 <id>ecomp-site</id>
220 <url>dav:${nexusproxy}${sitePath}</url>
221 </site>
222 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700223</project>
224