blob: 8d2c79ef6ac5890271075d6f4abc1cf33531a250 [file] [log] [blame]
sg481n43854a92017-08-03 17:27:34 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START====================================================
4 * org.onap.aai
5 * ===========================================================================
6 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7 * Copyright © 2017 Amdocs
8 * ===========================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END====================================================
21 *
22 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 *
24-->
25<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
27 <modelVersion>4.0.0</modelVersion>
28
29 <!-- No Parent on Purpose!!! -->
30 <artifactId>authz-client</artifactId>
31 <name>Authz Client</name>
32 <description>Client and XSD Generated code for Authz</description>
sg481nbd890c52017-08-28 12:11:35 -040033 <groupId>org.onap.aaf.authz</groupId>
34 <version>1.0.0-SNAPSHOT</version>
35 <packaging>jar</packaging>
sg481n43854a92017-08-03 17:27:34 -040036 <url>https://github.com/att/AAF</url>
37 <licenses>
38 <license>
39 <name>BSD License</name>
40 <url> </url>
41 </license>
42 </licenses>
43 <developers>
44 <developer>
45 <name>Jonathan Gathman</name>
46 <email></email>
47 <organization>ATT</organization>
48 <organizationUrl></organizationUrl>
49 </developer>
50 </developers>
51
sg481nbd890c52017-08-28 12:11:35 -040052 <properties>
sg481n43854a92017-08-03 17:27:34 -040053 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
54 <swm-distFiles-path>/opt/app/aft/${project.artifactId}/${project.version}</swm-distFiles-path>
55 <maven.test.failure.ignore>true</maven.test.failure.ignore>
sg481naa2c01c2017-08-25 01:29:57 -040056 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481n40cd3562017-09-01 13:12:31 -040057 <sonar.language>java</sonar.language>
58 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
59 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
60 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
61 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
62 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
63 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481naa2c01c2017-08-25 01:29:57 -040064 <nexusproxy>https://nexus.onap.org</nexusproxy>
65 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
66 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
67 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
68 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
sg481n43854a92017-08-03 17:27:34 -040069 </properties>
70
71 <dependencies>
72 <dependency>
73 <groupId>junit</groupId>
74 <artifactId>junit</artifactId>
75 <version>4.10</version>
76 <scope>test</scope>
77 </dependency>
78
79 </dependencies>
80
81 <build>
82 <plugins>
83 <plugin>
84 <groupId>org.codehaus.mojo</groupId>
85 <artifactId>jaxb2-maven-plugin</artifactId>
86 <version>1.3</version>
87 <executions>
88 <execution>
89 <phase>generate-sources</phase>
90 <goals>
91 <goal>xjc</goal>
92 </goals>
93 </execution>
94 </executions>
95 <configuration>
96 <schemaDirectory>src/main/xsd</schemaDirectory>
97 </configuration>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-compiler-plugin</artifactId>
102 <configuration>
103 <source>1.6</source>
104 <target>1.6</target>
105 </configuration>
106 </plugin>
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-deploy-plugin</artifactId>
110 <version>2.5</version>
111 <configuration>
112 <skip>false</skip>
113 </configuration>
114 </plugin>
115
116 <!--This plugin's configuration is used to store Eclipse m2e settings
117 only. It has no influence on the Maven build itself. -->
118 <plugin>
119 <groupId>org.eclipse.m2e</groupId>
120 <artifactId>lifecycle-mapping</artifactId>
121 <version>1.0.0</version>
122 <configuration>
123 <lifecycleMappingMetadata>
124 <pluginExecutions>
125 <pluginExecution>
126 <pluginExecutionFilter>
127 <groupId>
128 org.codehaus.mojo
129 </groupId>
130 <artifactId>
131 jaxb2-maven-plugin
132 </artifactId>
133 <versionRange>
134 [1.3,)
135 </versionRange>
136 <goals>
137 <goal>xjc</goal>
138 </goals>
139 </pluginExecutionFilter>
140 <action>
141 <ignore></ignore>
142 </action>
143 </pluginExecution>
144 </pluginExecutions>
145 </lifecycleMappingMetadata>
146 </configuration>
147 </plugin>
148 <plugin>
149 <groupId>org.apache.maven.plugins</groupId>
150 <artifactId>maven-compiler-plugin</artifactId>
151 <version>2.3.2</version>
152 <configuration>
153 <source>1.6</source>
154 <target>1.6</target>
155 </configuration>
156 </plugin>
157
158 <plugin>
159 <groupId>org.apache.maven.plugins</groupId>
160 <artifactId>maven-javadoc-plugin</artifactId>
161 <configuration>
162 <failOnError>false</failOnError>
163 </configuration>
164 <executions>
165 <execution>
166 <id>attach-javadocs</id>
167 <goals>
168 <goal>jar</goal>
169 </goals>
170 </execution>
171 </executions>
172 </plugin>
173
174
175 <plugin>
176 <groupId>org.apache.maven.plugins</groupId>
177 <artifactId>maven-source-plugin</artifactId>
178 <version>2.2.1</version>
179 <executions>
180 <execution>
181 <id>attach-sources</id>
182 <goals>
183 <goal>jar-no-fork</goal>
184 </goals>
185 </execution>
186 </executions>
187 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400188
189 <plugin>
sg481naa2c01c2017-08-25 01:29:57 -0400190 <groupId>org.sonatype.plugins</groupId>
191 <artifactId>nexus-staging-maven-plugin</artifactId>
192 <version>1.6.7</version>
193 <extensions>true</extensions>
194 <configuration>
195 <nexusUrl>${nexusproxy}</nexusUrl>
196 <stagingProfileId>176c31dfe190a</stagingProfileId>
197 <serverId>ecomp-staging</serverId>
sg481n40cd3562017-09-01 13:12:31 -0400198 <skipNexusStagingDeployMojo>${skip.staging.artifacts}</skipNexusStagingDeployMojo>
sg481naa2c01c2017-08-25 01:29:57 -0400199 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400200 </plugin>
201 <plugin>
202 <groupId>org.jacoco</groupId>
203 <artifactId>jacoco-maven-plugin</artifactId>
204 <version>0.7.7.201606060606</version>
205 <configuration>
206 <dumpOnExit>true</dumpOnExit>
207 <includes>
208 <include>org.onap.aaf.*</include>
209 </includes>
210 </configuration>
211 <executions>
212 <execution>
213 <id>pre-unit-test</id>
214 <goals>
215 <goal>prepare-agent</goal>
216 </goals>
217 <configuration>
218 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
219 <!-- <append>true</append> -->
220 </configuration>
221 </execution>
222 <execution>
223 <id>pre-integration-test</id>
224 <phase>pre-integration-test</phase>
225 <goals>
226 <goal>prepare-agent</goal>
227 </goals>
228 <configuration>
229 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
230 <!-- <append>true</append> -->
231 </configuration>
232 </execution>
233 <execution>
234 <goals>
235 <goal>merge</goal>
236 </goals>
237 <phase>post-integration-test</phase>
238 <configuration>
239 <fileSets>
240 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
241 <directory>${project.build.directory}/coverage-reports</directory>
242 <includes>
243 <include>*.exec</include>
244 </includes>
245 </fileSet>
246 </fileSets>
247 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
248 </configuration>
249 </execution>
250 </executions>
sg481naa2c01c2017-08-25 01:29:57 -0400251 </plugin>
sg481n43854a92017-08-03 17:27:34 -0400252 </plugins>
253 </build>
254
sg481naa2c01c2017-08-25 01:29:57 -0400255 <distributionManagement>
256 <repository>
257 <id>ecomp-releases</id>
258 <name>AAF Release Repository</name>
259 <url>${nexusproxy}${releaseNexusPath}</url>
260 </repository>
261 <snapshotRepository>
262 <id>ecomp-snapshots</id>
263 <name>AAF Snapshot Repository</name>
264 <url>${nexusproxy}${snapshotNexusPath}</url>
265 </snapshotRepository>
266 <site>
267 <id>ecomp-site</id>
268 <url>dav:${nexusproxy}${sitePath}</url>
269 </site>
270 </distributionManagement>
271<pluginRepositories>
272 <pluginRepository>
273 <id>onap-plugin-snapshots</id>
274 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
275 </pluginRepository>
276 </pluginRepositories>
sg481n43854a92017-08-03 17:27:34 -0400277
sg481naa2c01c2017-08-25 01:29:57 -0400278 <repositories>
279 <repository>
280 <id>central</id>
281 <name>Maven 2 repository 2</name>
282 <url>http://repo2.maven.org/maven2/</url>
283 </repository>
284 <repository>
285 <id>onap-jar-snapshots</id>
286 <url>https://nexus.onap.org/content/repositories/snapshots</url>
287 </repository>
288 <repository>
289 <id>spring-repo</id>
290 <name>Spring repo</name>
291 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
292 </repository>
293 <repository>
294 <id>repository.jboss.org-public</id>
295 <name>JBoss.org Maven repository</name>
296 <url>https://repository.jboss.org/nexus/content/groups/public</url>
297 </repository>
298 </repositories>
sg481n43854a92017-08-03 17:27:34 -0400299</project>
300