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