blob: 738f5f87d59735e960b8ff22f8de40d22b6feaf9 [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/maven-v4_0_0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <artifactId>parent</artifactId>
27 <relativePath>../pom.xml</relativePath>
Instrumental17ca7442018-03-29 16:54:19 -050028 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -070029 <version>2.1.0-SNAPSHOT</version>
30 </parent>
31
32 <artifactId>aaf-auth-deforg</artifactId>
33 <name>AAF Auth Default Organization</name>
34 <description>Example Organization Module</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>
57 <email>ian.howell@att.com</email>
58 <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
74 <properties>
75 <maven.test.failure.ignore>false</maven.test.failure.ignore>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000076 <!-- SONAR -->
Sai Gandhama88f56f2018-04-03 17:09:33 -050077 <sonar.skip>true</sonar.skip>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000078 <jacoco.version>0.7.7.201606060606</jacoco.version>
79 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
80 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
81 <!-- Default Sonar configuration -->
Sai Gandham61f8fdf2018-04-03 12:07:07 -050082 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
83 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000084 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
85 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
86 <nexusproxy>https://nexus.onap.org</nexusproxy>
87 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
88 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
89 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Sai Gandham103d3ca2018-04-06 14:00:44 -050090 <sitePath>/content/sites/site/org/onap/aaf/authz/auth/${project.artifactId}/${project.version}</sitePath>
Instrumental71037c32018-03-26 13:51:48 -070091 </properties>
92
93
94 <dependencies>
95 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050096 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumental71037c32018-03-26 13:51:48 -070097 <artifactId>aaf-cadi-core</artifactId>
su622b40077be2018-04-08 13:50:31 -040098 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -070099 </dependency>
100
101 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -0500102 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -0700103 <artifactId>aaf-auth-core</artifactId>
su622b40077be2018-04-08 13:50:31 -0400104 <version>${project.version}</version>
Instrumental71037c32018-03-26 13:51:48 -0700105 </dependency>
106
107 <dependency>
108 <groupId>javax.mail</groupId>
109 <artifactId>mail</artifactId>
110 </dependency>
111 </dependencies>
112
113 <build>
114 <pluginManagement>
115 <plugins>
Sai Gandham05c86472018-03-27 21:08:58 +0000116 <plugin>
117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-deploy-plugin</artifactId>
119 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -0500120 <skip>false</skip>
Sai Gandham05c86472018-03-27 21:08:58 +0000121 </configuration>
122 </plugin>
Instrumental71037c32018-03-26 13:51:48 -0700123 <plugin>
124 <groupId>org.apache.maven.plugins</groupId>
125 <artifactId>maven-javadoc-plugin</artifactId>
126 <version>2.10.4</version>
127 <configuration>
128 <failOnError>false</failOnError>
129 </configuration>
130 <executions>
131 <execution>
132 <id>attach-javadocs</id>
133 <goals>
134 <goal>jar</goal>
135 </goals>
136 </execution>
137 </executions>
138 </plugin>
139 <plugin>
140 <groupId>org.sonatype.plugins</groupId>
141 <artifactId>nexus-staging-maven-plugin</artifactId>
142 <version>1.6.7</version>
143 <extensions>true</extensions>
144 <configuration>
145 <nexusUrl>${nexusproxy}</nexusUrl>
146 <stagingProfileId>176c31dfe190a</stagingProfileId>
147 <serverId>ecomp-staging</serverId>
148 </configuration>
149 </plugin>
150 <plugin>
151 <groupId>org.jacoco</groupId>
152 <artifactId>jacoco-maven-plugin</artifactId>
153 <version>${jacoco.version}</version>
154 <configuration>
155 <excludes>
156 <exclude>**/gen/**</exclude>
157 <exclude>**/generated-sources/**</exclude>
158 <exclude>**/yang-gen/**</exclude>
159 <exclude>**/pax/**</exclude>
160 </excludes>
161 </configuration>
162 <executions>
Instrumental71037c32018-03-26 13:51:48 -0700163 <execution>
164 <id>pre-unit-test</id>
165 <goals>
166 <goal>prepare-agent</goal>
167 </goals>
168 <configuration>
169 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
170 <propertyName>surefireArgLine</propertyName>
171 </configuration>
172 </execution>
Instrumental71037c32018-03-26 13:51:48 -0700173 <execution>
174 <id>post-unit-test</id>
175 <phase>test</phase>
176 <goals>
177 <goal>report</goal>
178 </goals>
179 <configuration>
180 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
181 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
182 </configuration>
183 </execution>
184 <execution>
185 <id>pre-integration-test</id>
186 <phase>pre-integration-test</phase>
187 <goals>
188 <goal>prepare-agent</goal>
189 </goals>
190 <configuration>
191 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
192 <propertyName>failsafeArgLine</propertyName>
193 </configuration>
194 </execution>
Instrumental71037c32018-03-26 13:51:48 -0700195 <execution>
196 <id>post-integration-test</id>
197 <phase>post-integration-test</phase>
198 <goals>
199 <goal>report</goal>
200 </goals>
201 <configuration>
202 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
203 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
204 </configuration>
205 </execution>
206 </executions>
207 </plugin>
208 </plugins>
209 </pluginManagement>
210 </build>
211
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000212 <distributionManagement>
213 <repository>
214 <id>ecomp-releases</id>
215 <name>AAF Release Repository</name>
216 <url>${nexusproxy}${releaseNexusPath}</url>
217 </repository>
218 <snapshotRepository>
219 <id>ecomp-snapshots</id>
220 <name>AAF Snapshot Repository</name>
221 <url>${nexusproxy}${snapshotNexusPath}</url>
222 </snapshotRepository>
223 <site>
224 <id>ecomp-site</id>
225 <url>dav:${nexusproxy}${sitePath}</url>
226 </site>
227 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700228</project>