blob: a7b326a3f64886b4839a1f112776743f3e5bb45e [file] [log] [blame]
sg481nbd890c52017-08-28 12:11:35 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START====================================================
4 * org.onap.aaf
5 * ===========================================================================
6 * Copyright © 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 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 *
23-->
24<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
26 <modelVersion>4.0.0</modelVersion>
27 <parent>
28 <groupId>org.onap.aaf.authz</groupId>
29 <artifactId>parent</artifactId>
30 <version>1.0.0-SNAPSHOT</version>
31 <relativePath>../pom.xml</relativePath>
32 </parent>
33
34 <artifactId>authz-test</artifactId>
35 <name>Authz TestCases</name>
36 <description>TestCase Suite for Authz/Authn</description>
37 <packaging>jar</packaging>
38 <url>https://github.com/att/AAF</url>
39 <licenses>
40 <license>
41 <name>BSD License</name>
42 <url> </url>
43 </license>
44 </licenses>
45 <developers>
46 <developer>
47 <name>Jonathan Gathman</name>
48 <email></email>
49 <organization>ATT</organization>
50 <organizationUrl></organizationUrl>
51 </developer>
52 </developers>
53
54
55 <properties>
56 <maven.test.failure.ignore>false</maven.test.failure.ignore>
57 <project.swmVersion>0</project.swmVersion>
58 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481n40cd3562017-09-01 13:12:31 -040059 <sonar.language>java</sonar.language>
60 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
61 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
62 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
63 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
64 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
65 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040066 <nexusproxy>https://nexus.onap.org</nexusproxy>
67 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
68 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
69 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
70 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
71
72 </properties>
73
74 <dependencies>
75 <dependency>
76 <groupId>org.onap.aaf.cadi</groupId>
77 <artifactId>cadi-aaf</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>org.onap.aaf.authz</groupId>
82 <artifactId>authz-client</artifactId>
83 </dependency>
84
85 <dependency>
86 <groupId>org.onap.aaf.authz</groupId>
87 <artifactId>authz-core</artifactId>
88 </dependency>
89
90 <dependency>
91 <groupId>org.onap.aaf.authz</groupId>
92 <artifactId>authz-cmd</artifactId>
93 </dependency>
94
95 <dependency>
96 <groupId>com.att.aft</groupId>
97 <artifactId>dme2</artifactId>
98 </dependency>
99
100
101 <dependency>
102 <groupId>org.apache.jmeter</groupId>
103 <artifactId>ApacheJMeter_java</artifactId>
104 <version>2.11</version>
105 </dependency>
106
107 <dependency>
108 <groupId>junit</groupId>
109 <artifactId>junit</artifactId>
110 <version>4.7</version>
111 <scope>test</scope>
112 </dependency>
113 </dependencies>
114
115 <build>
116 <pluginManagement>
117 <plugins>
118 <plugin>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-failsafe-plugin</artifactId>
121 <configuration>
122 <includes>
123 <include>**/AAFJUnitTest.java</include>
124 </includes>
125 </configuration>
126 </plugin>
127
128 <plugin>
129 <groupId>org.apache.maven.plugins</groupId>
130 <artifactId>maven-surefire-plugin</artifactId>
131 <configuration>
132 <excludes>
133 <exclude>**/AAFJUnitTest.java</exclude>
134 </excludes>
135 </configuration>
136 </plugin>
137
138 <plugin>
139 <groupId>org.apache.maven.plugins</groupId>
140 <artifactId>maven-javadoc-plugin</artifactId>
141 <configuration>
142 <failOnError>false</failOnError>
143 </configuration>
144 <executions>
145 <execution>
146 <id>attach-javadocs</id>
147 <goals>
148 <goal>jar</goal>
149 </goals>
150 </execution>
151 </executions>
152 </plugin>
153
154
155 <plugin>
156 <groupId>org.apache.maven.plugins</groupId>
157 <artifactId>maven-source-plugin</artifactId>
158 <version>2.2.1</version>
159 <executions>
160 <execution>
161 <id>attach-sources</id>
162 <goals>
163 <goal>jar-no-fork</goal>
164 </goals>
165 </execution>
166 </executions>
167 </plugin>
sg481n40cd3562017-09-01 13:12:31 -0400168<plugin>
sg481nbd890c52017-08-28 12:11:35 -0400169 <groupId>org.sonatype.plugins</groupId>
170 <artifactId>nexus-staging-maven-plugin</artifactId>
171 <version>1.6.7</version>
172 <extensions>true</extensions>
173 <configuration>
174 <nexusUrl>${nexusproxy}</nexusUrl>
175 <stagingProfileId>176c31dfe190a</stagingProfileId>
176 <serverId>ecomp-staging</serverId>
sg481n40cd3562017-09-01 13:12:31 -0400177 <skipNexusStagingDeployMojo>${skip.staging.artifacts}</skipNexusStagingDeployMojo>
sg481nbd890c52017-08-28 12:11:35 -0400178 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400179 </plugin>
180 <plugin>
181 <groupId>org.jacoco</groupId>
182 <artifactId>jacoco-maven-plugin</artifactId>
183 <version>0.7.7.201606060606</version>
184 <configuration>
185 <dumpOnExit>true</dumpOnExit>
186 <includes>
187 <include>org.onap.aaf.*</include>
188 </includes>
189 </configuration>
190 <executions>
191 <execution>
192 <id>pre-unit-test</id>
193 <goals>
194 <goal>prepare-agent</goal>
195 </goals>
196 <configuration>
197 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
198 <!-- <append>true</append> -->
199 </configuration>
200 </execution>
201 <execution>
202 <id>pre-integration-test</id>
203 <phase>pre-integration-test</phase>
204 <goals>
205 <goal>prepare-agent</goal>
206 </goals>
207 <configuration>
208 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
209 <!-- <append>true</append> -->
210 </configuration>
211 </execution>
212 <execution>
213 <goals>
214 <goal>merge</goal>
215 </goals>
216 <phase>post-integration-test</phase>
217 <configuration>
218 <fileSets>
219 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
220 <directory>${project.build.directory}/coverage-reports</directory>
221 <includes>
222 <include>*.exec</include>
223 </includes>
224 </fileSet>
225 </fileSets>
226 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
227 </configuration>
228 </execution>
229 </executions>
230 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400231
232 </plugins>
233 </pluginManagement>
234 </build>
235 <distributionManagement>
236 <repository>
237 <id>ecomp-releases</id>
238 <name>AAF Release Repository</name>
239 <url>${nexusproxy}${releaseNexusPath}</url>
240 </repository>
241 <snapshotRepository>
242 <id>ecomp-snapshots</id>
243 <name>AAF Snapshot Repository</name>
244 <url>${nexusproxy}${snapshotNexusPath}</url>
245 </snapshotRepository>
246 <site>
247 <id>ecomp-site</id>
248 <url>dav:${nexusproxy}${sitePath}</url>
249 </site>
250 </distributionManagement>
251<pluginRepositories>
252 <pluginRepository>
253 <id>onap-plugin-snapshots</id>
254 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
255 </pluginRepository>
256 </pluginRepositories>
257
258 <repositories>
259 <repository>
260 <id>central</id>
261 <name>Maven 2 repository 2</name>
262 <url>http://repo2.maven.org/maven2/</url>
263 </repository>
264 <repository>
265 <id>onap-jar-snapshots</id>
266 <url>https://nexus.onap.org/content/repositories/snapshots</url>
267 </repository>
268 <repository>
269 <id>spring-repo</id>
270 <name>Spring repo</name>
271 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
272 </repository>
273 <repository>
274 <id>repository.jboss.org-public</id>
275 <name>JBoss.org Maven repository</name>
276 <url>https://repository.jboss.org/nexus/content/groups/public</url>
277 </repository>
278 </repositories>
279</project>