blob: 1fa3f495d5ecfb33e1ca1713ec511db465a84722 [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>
28 <groupId>org.onap.aaf.auth</groupId>
29 <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>
Sai Gandham05c86472018-03-27 21:08:58 +000075 <skipTests>true</skipTests>
Instrumental71037c32018-03-26 13:51:48 -070076 <maven.test.failure.ignore>false</maven.test.failure.ignore>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000077 <!-- SONAR -->
78 <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 -->
82 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
83 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
84 <!-- 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>
90 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
Instrumental71037c32018-03-26 13:51:48 -070091 </properties>
92
93
94 <dependencies>
95 <dependency>
96 <groupId>org.onap.aaf.cadi</groupId>
97 <artifactId>aaf-cadi-core</artifactId>
98 </dependency>
99
100 <dependency>
101 <groupId>org.onap.aaf.auth</groupId>
102 <artifactId>aaf-auth-core</artifactId>
103 </dependency>
104
105 <dependency>
106 <groupId>javax.mail</groupId>
107 <artifactId>mail</artifactId>
108 </dependency>
109 </dependencies>
110
111 <build>
112 <pluginManagement>
113 <plugins>
Sai Gandham05c86472018-03-27 21:08:58 +0000114 <plugin>
115 <groupId>org.apache.maven.plugins</groupId>
116 <artifactId>maven-deploy-plugin</artifactId>
117 <configuration>
118 <skip>true</skip>
119 </configuration>
120 </plugin>
Instrumental71037c32018-03-26 13:51:48 -0700121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-javadoc-plugin</artifactId>
124 <version>2.10.4</version>
125 <configuration>
126 <failOnError>false</failOnError>
127 </configuration>
128 <executions>
129 <execution>
130 <id>attach-javadocs</id>
131 <goals>
132 <goal>jar</goal>
133 </goals>
134 </execution>
135 </executions>
136 </plugin>
137 <plugin>
138 <groupId>org.sonatype.plugins</groupId>
139 <artifactId>nexus-staging-maven-plugin</artifactId>
140 <version>1.6.7</version>
141 <extensions>true</extensions>
142 <configuration>
143 <nexusUrl>${nexusproxy}</nexusUrl>
144 <stagingProfileId>176c31dfe190a</stagingProfileId>
145 <serverId>ecomp-staging</serverId>
146 </configuration>
147 </plugin>
148 <plugin>
149 <groupId>org.jacoco</groupId>
150 <artifactId>jacoco-maven-plugin</artifactId>
151 <version>${jacoco.version}</version>
152 <configuration>
153 <excludes>
154 <exclude>**/gen/**</exclude>
155 <exclude>**/generated-sources/**</exclude>
156 <exclude>**/yang-gen/**</exclude>
157 <exclude>**/pax/**</exclude>
158 </excludes>
159 </configuration>
160 <executions>
161
162 <execution>
163 <id>pre-unit-test</id>
164 <goals>
165 <goal>prepare-agent</goal>
166 </goals>
167 <configuration>
168 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
169 <propertyName>surefireArgLine</propertyName>
170 </configuration>
171 </execution>
172
173
174 <execution>
175 <id>post-unit-test</id>
176 <phase>test</phase>
177 <goals>
178 <goal>report</goal>
179 </goals>
180 <configuration>
181 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
182 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
183 </configuration>
184 </execution>
185 <execution>
186 <id>pre-integration-test</id>
187 <phase>pre-integration-test</phase>
188 <goals>
189 <goal>prepare-agent</goal>
190 </goals>
191 <configuration>
192 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
193 <propertyName>failsafeArgLine</propertyName>
194 </configuration>
195 </execution>
196
197 <execution>
198 <id>post-integration-test</id>
199 <phase>post-integration-test</phase>
200 <goals>
201 <goal>report</goal>
202 </goals>
203 <configuration>
204 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
205 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
206 </configuration>
207 </execution>
208 </executions>
209 </plugin>
210 </plugins>
211 </pluginManagement>
212 </build>
213
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000214 <distributionManagement>
215 <repository>
216 <id>ecomp-releases</id>
217 <name>AAF Release Repository</name>
218 <url>${nexusproxy}${releaseNexusPath}</url>
219 </repository>
220 <snapshotRepository>
221 <id>ecomp-snapshots</id>
222 <name>AAF Snapshot Repository</name>
223 <url>${nexusproxy}${snapshotNexusPath}</url>
224 </snapshotRepository>
225 <site>
226 <id>ecomp-site</id>
227 <url>dav:${nexusproxy}${sitePath}</url>
228 </site>
229 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700230</project>