blob: 4151ab2457ae3297be7065d4741abed09eecfa9b [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>
sg481na2ac6782017-09-18 16:35:50 -040034 <version>1.0.1-SNAPSHOT</version>
sg481nbd890c52017-08-28 12:11:35 -040035 <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>
sg481na2ac6782017-09-18 16:35:50 -0400107
sg481n43854a92017-08-03 17:27:34 -0400108
109 <!--This plugin's configuration is used to store Eclipse m2e settings
110 only. It has no influence on the Maven build itself. -->
111 <plugin>
112 <groupId>org.eclipse.m2e</groupId>
113 <artifactId>lifecycle-mapping</artifactId>
114 <version>1.0.0</version>
115 <configuration>
116 <lifecycleMappingMetadata>
117 <pluginExecutions>
118 <pluginExecution>
119 <pluginExecutionFilter>
120 <groupId>
121 org.codehaus.mojo
122 </groupId>
123 <artifactId>
124 jaxb2-maven-plugin
125 </artifactId>
126 <versionRange>
127 [1.3,)
128 </versionRange>
129 <goals>
130 <goal>xjc</goal>
131 </goals>
132 </pluginExecutionFilter>
133 <action>
134 <ignore></ignore>
135 </action>
136 </pluginExecution>
137 </pluginExecutions>
138 </lifecycleMappingMetadata>
139 </configuration>
140 </plugin>
141 <plugin>
142 <groupId>org.apache.maven.plugins</groupId>
143 <artifactId>maven-compiler-plugin</artifactId>
144 <version>2.3.2</version>
145 <configuration>
146 <source>1.6</source>
147 <target>1.6</target>
148 </configuration>
149 </plugin>
150
151 <plugin>
152 <groupId>org.apache.maven.plugins</groupId>
153 <artifactId>maven-javadoc-plugin</artifactId>
154 <configuration>
155 <failOnError>false</failOnError>
156 </configuration>
157 <executions>
158 <execution>
159 <id>attach-javadocs</id>
160 <goals>
161 <goal>jar</goal>
162 </goals>
163 </execution>
164 </executions>
165 </plugin>
166
167
168 <plugin>
169 <groupId>org.apache.maven.plugins</groupId>
170 <artifactId>maven-source-plugin</artifactId>
171 <version>2.2.1</version>
172 <executions>
173 <execution>
174 <id>attach-sources</id>
175 <goals>
176 <goal>jar-no-fork</goal>
177 </goals>
178 </execution>
179 </executions>
180 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400181
182 <plugin>
sg481naa2c01c2017-08-25 01:29:57 -0400183 <groupId>org.sonatype.plugins</groupId>
184 <artifactId>nexus-staging-maven-plugin</artifactId>
185 <version>1.6.7</version>
186 <extensions>true</extensions>
187 <configuration>
188 <nexusUrl>${nexusproxy}</nexusUrl>
189 <stagingProfileId>176c31dfe190a</stagingProfileId>
190 <serverId>ecomp-staging</serverId>
191 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400192 </plugin>
193 <plugin>
194 <groupId>org.jacoco</groupId>
195 <artifactId>jacoco-maven-plugin</artifactId>
196 <version>0.7.7.201606060606</version>
197 <configuration>
198 <dumpOnExit>true</dumpOnExit>
199 <includes>
200 <include>org.onap.aaf.*</include>
201 </includes>
202 </configuration>
203 <executions>
204 <execution>
205 <id>pre-unit-test</id>
206 <goals>
207 <goal>prepare-agent</goal>
208 </goals>
209 <configuration>
210 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
211 <!-- <append>true</append> -->
212 </configuration>
213 </execution>
214 <execution>
215 <id>pre-integration-test</id>
216 <phase>pre-integration-test</phase>
217 <goals>
218 <goal>prepare-agent</goal>
219 </goals>
220 <configuration>
221 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
222 <!-- <append>true</append> -->
223 </configuration>
224 </execution>
225 <execution>
226 <goals>
227 <goal>merge</goal>
228 </goals>
229 <phase>post-integration-test</phase>
230 <configuration>
231 <fileSets>
232 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
233 <directory>${project.build.directory}/coverage-reports</directory>
234 <includes>
235 <include>*.exec</include>
236 </includes>
237 </fileSet>
238 </fileSets>
239 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
240 </configuration>
241 </execution>
242 </executions>
sg481naa2c01c2017-08-25 01:29:57 -0400243 </plugin>
sg481n43854a92017-08-03 17:27:34 -0400244 </plugins>
245 </build>
246
sg481naa2c01c2017-08-25 01:29:57 -0400247 <distributionManagement>
248 <repository>
249 <id>ecomp-releases</id>
250 <name>AAF Release Repository</name>
251 <url>${nexusproxy}${releaseNexusPath}</url>
252 </repository>
253 <snapshotRepository>
254 <id>ecomp-snapshots</id>
255 <name>AAF Snapshot Repository</name>
256 <url>${nexusproxy}${snapshotNexusPath}</url>
257 </snapshotRepository>
258 <site>
259 <id>ecomp-site</id>
260 <url>dav:${nexusproxy}${sitePath}</url>
261 </site>
262 </distributionManagement>
263<pluginRepositories>
264 <pluginRepository>
265 <id>onap-plugin-snapshots</id>
266 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
267 </pluginRepository>
268 </pluginRepositories>
sg481n43854a92017-08-03 17:27:34 -0400269
sg481naa2c01c2017-08-25 01:29:57 -0400270 <repositories>
271 <repository>
272 <id>central</id>
273 <name>Maven 2 repository 2</name>
274 <url>http://repo2.maven.org/maven2/</url>
275 </repository>
276 <repository>
277 <id>onap-jar-snapshots</id>
278 <url>https://nexus.onap.org/content/repositories/snapshots</url>
279 </repository>
280 <repository>
281 <id>spring-repo</id>
282 <name>Spring repo</name>
283 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
284 </repository>
285 <repository>
286 <id>repository.jboss.org-public</id>
287 <name>JBoss.org Maven repository</name>
288 <url>https://repository.jboss.org/nexus/content/groups/public</url>
289 </repository>
290 </repositories>
sg481n43854a92017-08-03 17:27:34 -0400291</project>
292