blob: f838d1750341e4980304e4931bdae24565f43f1c [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>
sg481n5c30b7f2017-09-17 11:37:00 -040078 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040079 </dependency>
80
81 <dependency>
82 <groupId>org.onap.aaf.authz</groupId>
83 <artifactId>authz-client</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040084 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040085 </dependency>
86
87 <dependency>
88 <groupId>org.onap.aaf.authz</groupId>
89 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040090 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040091 </dependency>
92
93 <dependency>
94 <groupId>org.onap.aaf.authz</groupId>
95 <artifactId>authz-cmd</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040096 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040097 </dependency>
98
99 <dependency>
100 <groupId>com.att.aft</groupId>
101 <artifactId>dme2</artifactId>
102 </dependency>
103
104
105 <dependency>
106 <groupId>org.apache.jmeter</groupId>
107 <artifactId>ApacheJMeter_java</artifactId>
108 <version>2.11</version>
109 </dependency>
110
111 <dependency>
112 <groupId>junit</groupId>
113 <artifactId>junit</artifactId>
114 <version>4.7</version>
115 <scope>test</scope>
116 </dependency>
117 </dependencies>
118
119 <build>
120 <pluginManagement>
121 <plugins>
122 <plugin>
123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-failsafe-plugin</artifactId>
125 <configuration>
126 <includes>
127 <include>**/AAFJUnitTest.java</include>
128 </includes>
129 </configuration>
130 </plugin>
131
132 <plugin>
133 <groupId>org.apache.maven.plugins</groupId>
134 <artifactId>maven-surefire-plugin</artifactId>
135 <configuration>
136 <excludes>
137 <exclude>**/AAFJUnitTest.java</exclude>
138 </excludes>
139 </configuration>
140 </plugin>
141
142 <plugin>
143 <groupId>org.apache.maven.plugins</groupId>
144 <artifactId>maven-javadoc-plugin</artifactId>
145 <configuration>
146 <failOnError>false</failOnError>
147 </configuration>
148 <executions>
149 <execution>
150 <id>attach-javadocs</id>
151 <goals>
152 <goal>jar</goal>
153 </goals>
154 </execution>
155 </executions>
156 </plugin>
157
158
159 <plugin>
160 <groupId>org.apache.maven.plugins</groupId>
161 <artifactId>maven-source-plugin</artifactId>
162 <version>2.2.1</version>
163 <executions>
164 <execution>
165 <id>attach-sources</id>
166 <goals>
167 <goal>jar-no-fork</goal>
168 </goals>
169 </execution>
170 </executions>
171 </plugin>
sg481n40cd3562017-09-01 13:12:31 -0400172<plugin>
sg481nbd890c52017-08-28 12:11:35 -0400173 <groupId>org.sonatype.plugins</groupId>
174 <artifactId>nexus-staging-maven-plugin</artifactId>
175 <version>1.6.7</version>
176 <extensions>true</extensions>
177 <configuration>
178 <nexusUrl>${nexusproxy}</nexusUrl>
179 <stagingProfileId>176c31dfe190a</stagingProfileId>
180 <serverId>ecomp-staging</serverId>
181 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400182 </plugin>
183 <plugin>
184 <groupId>org.jacoco</groupId>
185 <artifactId>jacoco-maven-plugin</artifactId>
186 <version>0.7.7.201606060606</version>
187 <configuration>
188 <dumpOnExit>true</dumpOnExit>
189 <includes>
190 <include>org.onap.aaf.*</include>
191 </includes>
192 </configuration>
193 <executions>
194 <execution>
195 <id>pre-unit-test</id>
196 <goals>
197 <goal>prepare-agent</goal>
198 </goals>
199 <configuration>
200 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
201 <!-- <append>true</append> -->
202 </configuration>
203 </execution>
204 <execution>
205 <id>pre-integration-test</id>
206 <phase>pre-integration-test</phase>
207 <goals>
208 <goal>prepare-agent</goal>
209 </goals>
210 <configuration>
211 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
212 <!-- <append>true</append> -->
213 </configuration>
214 </execution>
215 <execution>
216 <goals>
217 <goal>merge</goal>
218 </goals>
219 <phase>post-integration-test</phase>
220 <configuration>
221 <fileSets>
222 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
223 <directory>${project.build.directory}/coverage-reports</directory>
224 <includes>
225 <include>*.exec</include>
226 </includes>
227 </fileSet>
228 </fileSets>
229 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
230 </configuration>
231 </execution>
232 </executions>
233 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400234
235 </plugins>
236 </pluginManagement>
237 </build>
238 <distributionManagement>
239 <repository>
240 <id>ecomp-releases</id>
241 <name>AAF Release Repository</name>
242 <url>${nexusproxy}${releaseNexusPath}</url>
243 </repository>
244 <snapshotRepository>
245 <id>ecomp-snapshots</id>
246 <name>AAF Snapshot Repository</name>
247 <url>${nexusproxy}${snapshotNexusPath}</url>
248 </snapshotRepository>
249 <site>
250 <id>ecomp-site</id>
251 <url>dav:${nexusproxy}${sitePath}</url>
252 </site>
253 </distributionManagement>
254<pluginRepositories>
255 <pluginRepository>
256 <id>onap-plugin-snapshots</id>
257 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
258 </pluginRepository>
259 </pluginRepositories>
260
261 <repositories>
262 <repository>
263 <id>central</id>
264 <name>Maven 2 repository 2</name>
265 <url>http://repo2.maven.org/maven2/</url>
266 </repository>
267 <repository>
268 <id>onap-jar-snapshots</id>
269 <url>https://nexus.onap.org/content/repositories/snapshots</url>
270 </repository>
271 <repository>
272 <id>spring-repo</id>
273 <name>Spring repo</name>
274 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
275 </repository>
276 <repository>
277 <id>repository.jboss.org-public</id>
278 <name>JBoss.org Maven repository</name>
279 <url>https://repository.jboss.org/nexus/content/groups/public</url>
280 </repository>
281 </repositories>
282</project>