blob: 65f333b73468503100bedbdbd4152956f9ff3841 [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>
Instrumental17ca7442018-03-29 16:54:19 -050026 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -070027 <artifactId>parent</artifactId>
28 <version>2.1.0-SNAPSHOT</version>
29 <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 -->
80 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
81 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
82 <!-- 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>
88 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
89 </properties>
90
Instrumental71037c32018-03-26 13:51:48 -070091 <dependencies>
92 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050093 <groupId>org.onap.aaf.authz.misc</groupId>
Instrumental71037c32018-03-26 13:51:48 -070094 <artifactId>aaf-misc-env</artifactId>
95 </dependency>
96 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050097 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumental71037c32018-03-26 13:51:48 -070098 <artifactId>aaf-cadi-aaf</artifactId>
99 </dependency>
100
101 <dependency>
102 <groupId>javax.servlet</groupId>
103 <artifactId>servlet-api</artifactId>
104 </dependency>
105
106 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -0500107 <groupId>org.onap.aaf.authz.misc</groupId>
Instrumental71037c32018-03-26 13:51:48 -0700108 <artifactId>aaf-misc-log4j</artifactId>
109 </dependency>
110
111 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -0500112 <groupId>org.onap.aaf.authz.cadi</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
122 <dependency>
123 <groupId>org.eclipse.jetty</groupId>
124 <artifactId>jetty-jmx</artifactId>
125 <scope>compile</scope>
126 </dependency>
127 </dependencies>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000128
129 <build>
130 <plugins>
Sai Gandham05c86472018-03-27 21:08:58 +0000131 <plugin>
132 <groupId>org.apache.maven.plugins</groupId>
133 <artifactId>maven-deploy-plugin</artifactId>
134 <configuration>
135 <skip>true</skip>
136 </configuration>
137 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000138 <plugin>
139 <groupId>org.sonatype.plugins</groupId>
140 <artifactId>nexus-staging-maven-plugin</artifactId>
141 <version>1.6.7</version>
142 <extensions>true</extensions>
143 <configuration>
144 <nexusUrl>${nexusproxy}</nexusUrl>
145 <stagingProfileId>176c31dfe190a</stagingProfileId>
146 <serverId>ecomp-staging</serverId>
147 </configuration>
148 </plugin>
149 <plugin>
150 <groupId>org.jacoco</groupId>
151 <artifactId>jacoco-maven-plugin</artifactId>
152 <version>0.7.7.201606060606</version>
153 <configuration>
154 <dumpOnExit>true</dumpOnExit>
155 <includes>
156 <include>org.onap.aaf.*</include>
157 </includes>
158 </configuration>
159 <executions>
160 <execution>
161 <id>pre-unit-test</id>
162 <goals>
163 <goal>prepare-agent</goal>
164 </goals>
165 <configuration>
166 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
167 <!-- <append>true</append> -->
168 </configuration>
169 </execution>
170 <execution>
171 <id>pre-integration-test</id>
172 <phase>pre-integration-test</phase>
173 <goals>
174 <goal>prepare-agent</goal>
175 </goals>
176 <configuration>
177 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
178 <!-- <append>true</append> -->
179 </configuration>
180 </execution>
181 <execution>
182 <goals>
183 <goal>merge</goal>
184 </goals>
185 <phase>post-integration-test</phase>
186 <configuration>
187 <fileSets>
188 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
189 <directory>${project.build.directory}/coverage-reports</directory>
190 <includes>
191 <include>*.exec</include>
192 </includes>
193 </fileSet>
194 </fileSets>
195 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
196 </configuration>
197 </execution>
198 </executions>
199 </plugin>
200 </plugins>
201 </build>
202 <distributionManagement>
203 <repository>
204 <id>ecomp-releases</id>
205 <name>AAF Release Repository</name>
206 <url>${nexusproxy}${releaseNexusPath}</url>
207 </repository>
208 <snapshotRepository>
209 <id>ecomp-snapshots</id>
210 <name>AAF Snapshot Repository</name>
211 <url>${nexusproxy}${snapshotNexusPath}</url>
212 </snapshotRepository>
213 <site>
214 <id>ecomp-site</id>
215 <url>dav:${nexusproxy}${sitePath}</url>
216 </site>
217 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700218</project>
219