blob: f194874716bf44be1aba5a9bc31df5cfd616939c [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>
Sai Gandham05c86472018-03-27 21:08:58 +000075 <skipTests>true</skipTests>
Instrumental17ca7442018-03-29 16:54:19 -050076
77
Sai Gandhamc434f3c2018-03-27 16:29:24 +000078 <!-- SONAR -->
79 <jacoco.version>0.7.7.201606060606</jacoco.version>
80 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
81 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
82 <!-- Default Sonar configuration -->
83 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
84 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
85 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
86 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
87 <nexusproxy>https://nexus.onap.org</nexusproxy>
88 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
89 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
90 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
91 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
92 </properties>
93
Instrumental71037c32018-03-26 13:51:48 -070094 <dependencies>
95 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050096 <groupId>org.onap.aaf.authz.misc</groupId>
Instrumental71037c32018-03-26 13:51:48 -070097 <artifactId>aaf-misc-env</artifactId>
98 </dependency>
99 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -0500100 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumental71037c32018-03-26 13:51:48 -0700101 <artifactId>aaf-cadi-aaf</artifactId>
102 </dependency>
103
104 <dependency>
105 <groupId>javax.servlet</groupId>
106 <artifactId>servlet-api</artifactId>
107 </dependency>
108
109 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -0500110 <groupId>org.onap.aaf.authz.misc</groupId>
Instrumental71037c32018-03-26 13:51:48 -0700111 <artifactId>aaf-misc-log4j</artifactId>
112 </dependency>
113
114 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -0500115 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumental71037c32018-03-26 13:51:48 -0700116 <artifactId>aaf-cadi-core</artifactId>
117 </dependency>
118
119 <dependency>
120 <groupId>org.eclipse.jetty</groupId>
121 <artifactId>jetty-servlet</artifactId>
122 <scope>compile</scope>
123 </dependency>
124
125 <dependency>
126 <groupId>org.eclipse.jetty</groupId>
127 <artifactId>jetty-jmx</artifactId>
128 <scope>compile</scope>
129 </dependency>
130 </dependencies>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000131
132 <build>
133 <plugins>
Sai Gandham05c86472018-03-27 21:08:58 +0000134 <plugin>
135 <groupId>org.apache.maven.plugins</groupId>
136 <artifactId>maven-deploy-plugin</artifactId>
137 <configuration>
138 <skip>true</skip>
139 </configuration>
140 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000141 <plugin>
142 <groupId>org.sonatype.plugins</groupId>
143 <artifactId>nexus-staging-maven-plugin</artifactId>
144 <version>1.6.7</version>
145 <extensions>true</extensions>
146 <configuration>
147 <nexusUrl>${nexusproxy}</nexusUrl>
148 <stagingProfileId>176c31dfe190a</stagingProfileId>
149 <serverId>ecomp-staging</serverId>
150 </configuration>
151 </plugin>
152 <plugin>
153 <groupId>org.jacoco</groupId>
154 <artifactId>jacoco-maven-plugin</artifactId>
155 <version>0.7.7.201606060606</version>
156 <configuration>
157 <dumpOnExit>true</dumpOnExit>
158 <includes>
159 <include>org.onap.aaf.*</include>
160 </includes>
161 </configuration>
162 <executions>
163 <execution>
164 <id>pre-unit-test</id>
165 <goals>
166 <goal>prepare-agent</goal>
167 </goals>
168 <configuration>
169 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
170 <!-- <append>true</append> -->
171 </configuration>
172 </execution>
173 <execution>
174 <id>pre-integration-test</id>
175 <phase>pre-integration-test</phase>
176 <goals>
177 <goal>prepare-agent</goal>
178 </goals>
179 <configuration>
180 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
181 <!-- <append>true</append> -->
182 </configuration>
183 </execution>
184 <execution>
185 <goals>
186 <goal>merge</goal>
187 </goals>
188 <phase>post-integration-test</phase>
189 <configuration>
190 <fileSets>
191 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
192 <directory>${project.build.directory}/coverage-reports</directory>
193 <includes>
194 <include>*.exec</include>
195 </includes>
196 </fileSet>
197 </fileSets>
198 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
199 </configuration>
200 </execution>
201 </executions>
202 </plugin>
203 </plugins>
204 </build>
205 <distributionManagement>
206 <repository>
207 <id>ecomp-releases</id>
208 <name>AAF Release Repository</name>
209 <url>${nexusproxy}${releaseNexusPath}</url>
210 </repository>
211 <snapshotRepository>
212 <id>ecomp-snapshots</id>
213 <name>AAF Snapshot Repository</name>
214 <url>${nexusproxy}${snapshotNexusPath}</url>
215 </snapshotRepository>
216 <site>
217 <id>ecomp-site</id>
218 <url>dav:${nexusproxy}${sitePath}</url>
219 </site>
220 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700221</project>
222