blob: 2ff47be378438f436a30b2176338fa8a03baf233 [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
sg481n4e6a2172017-09-19 12:22:25 -040029
30 <parent>
31 <groupId>org.onap.aaf.authz</groupId>
32 <artifactId>parent</artifactId>
33 <version>1.0.1-SNAPSHOT</version>
34 <relativePath>../pom.xml</relativePath>
35 </parent>
36
sg481n43854a92017-08-03 17:27:34 -040037 <!-- No Parent on Purpose!!! -->
38 <artifactId>authz-client</artifactId>
39 <name>Authz Client</name>
40 <description>Client and XSD Generated code for Authz</description>
sg481nbd890c52017-08-28 12:11:35 -040041 <groupId>org.onap.aaf.authz</groupId>
sg481na2ac6782017-09-18 16:35:50 -040042 <version>1.0.1-SNAPSHOT</version>
sg481nbd890c52017-08-28 12:11:35 -040043 <packaging>jar</packaging>
sg481n43854a92017-08-03 17:27:34 -040044 <url>https://github.com/att/AAF</url>
45 <licenses>
46 <license>
47 <name>BSD License</name>
48 <url> </url>
49 </license>
50 </licenses>
51 <developers>
52 <developer>
53 <name>Jonathan Gathman</name>
54 <email></email>
55 <organization>ATT</organization>
56 <organizationUrl></organizationUrl>
57 </developer>
58 </developers>
59
sg481nbd890c52017-08-28 12:11:35 -040060 <properties>
sg481n43854a92017-08-03 17:27:34 -040061 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
62 <swm-distFiles-path>/opt/app/aft/${project.artifactId}/${project.version}</swm-distFiles-path>
sg481n08e11042017-09-29 12:33:53 +000063 <maven.test.failure.ignore>true</maven.test.failure.ignore>
sg481naa2c01c2017-08-25 01:29:57 -040064 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481n4ccc6b82017-10-04 17:29:37 +000065 <!-- SONAR -->
66 <jacoco.version>0.7.7.201606060606</jacoco.version>
67 <sonar.skip>true</sonar.skip>
68 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
69 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
70 <!-- Default Sonar configuration -->
71 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
72 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
73 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
74 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
sg481naa2c01c2017-08-25 01:29:57 -040075 <nexusproxy>https://nexus.onap.org</nexusproxy>
76 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
77 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
78 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000079 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481n43854a92017-08-03 17:27:34 -040080 </properties>
81
82 <dependencies>
83 <dependency>
84 <groupId>junit</groupId>
85 <artifactId>junit</artifactId>
86 <version>4.10</version>
87 <scope>test</scope>
88 </dependency>
89
90 </dependencies>
91
92 <build>
93 <plugins>
94 <plugin>
95 <groupId>org.codehaus.mojo</groupId>
96 <artifactId>jaxb2-maven-plugin</artifactId>
97 <version>1.3</version>
98 <executions>
99 <execution>
100 <phase>generate-sources</phase>
101 <goals>
102 <goal>xjc</goal>
103 </goals>
104 </execution>
105 </executions>
106 <configuration>
107 <schemaDirectory>src/main/xsd</schemaDirectory>
108 </configuration>
109 </plugin>
sg481n43854a92017-08-03 17:27:34 -0400110
111 <!--This plugin's configuration is used to store Eclipse m2e settings
112 only. It has no influence on the Maven build itself. -->
113 <plugin>
114 <groupId>org.eclipse.m2e</groupId>
115 <artifactId>lifecycle-mapping</artifactId>
116 <version>1.0.0</version>
117 <configuration>
118 <lifecycleMappingMetadata>
119 <pluginExecutions>
120 <pluginExecution>
121 <pluginExecutionFilter>
122 <groupId>
123 org.codehaus.mojo
124 </groupId>
125 <artifactId>
126 jaxb2-maven-plugin
127 </artifactId>
128 <versionRange>
129 [1.3,)
130 </versionRange>
131 <goals>
132 <goal>xjc</goal>
133 </goals>
134 </pluginExecutionFilter>
135 <action>
136 <ignore></ignore>
137 </action>
138 </pluginExecution>
139 </pluginExecutions>
140 </lifecycleMappingMetadata>
141 </configuration>
142 </plugin>
143 <plugin>
144 <groupId>org.apache.maven.plugins</groupId>
145 <artifactId>maven-compiler-plugin</artifactId>
146 <version>2.3.2</version>
147 <configuration>
148 <source>1.6</source>
149 <target>1.6</target>
150 </configuration>
151 </plugin>
152
153 <plugin>
154 <groupId>org.apache.maven.plugins</groupId>
155 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000156 <version>2.10.4</version>
sg481n43854a92017-08-03 17:27:34 -0400157 <configuration>
158 <failOnError>false</failOnError>
159 </configuration>
160 <executions>
161 <execution>
162 <id>attach-javadocs</id>
163 <goals>
164 <goal>jar</goal>
165 </goals>
166 </execution>
167 </executions>
168 </plugin>
169
170
171 <plugin>
172 <groupId>org.apache.maven.plugins</groupId>
173 <artifactId>maven-source-plugin</artifactId>
174 <version>2.2.1</version>
175 <executions>
176 <execution>
177 <id>attach-sources</id>
178 <goals>
179 <goal>jar-no-fork</goal>
180 </goals>
181 </execution>
182 </executions>
183 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400184
185 <plugin>
sg481naa2c01c2017-08-25 01:29:57 -0400186 <groupId>org.sonatype.plugins</groupId>
187 <artifactId>nexus-staging-maven-plugin</artifactId>
188 <version>1.6.7</version>
189 <extensions>true</extensions>
190 <configuration>
191 <nexusUrl>${nexusproxy}</nexusUrl>
192 <stagingProfileId>176c31dfe190a</stagingProfileId>
193 <serverId>ecomp-staging</serverId>
194 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400195 </plugin>
196 <plugin>
sg481n4ccc6b82017-10-04 17:29:37 +0000197 <groupId>org.jacoco</groupId>
198 <artifactId>jacoco-maven-plugin</artifactId>
199 <version>${jacoco.version}</version>
200 <configuration>
201 <excludes>
202 <exclude>**/gen/**</exclude>
203 <exclude>**/generated-sources/**</exclude>
204 <exclude>**/yang-gen/**</exclude>
205 <exclude>**/pax/**</exclude>
206 </excludes>
207 </configuration>
208 <executions>
209
210 <execution>
211 <id>pre-unit-test</id>
212 <goals>
213 <goal>prepare-agent</goal>
214 </goals>
215 <configuration>
216 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
217 <propertyName>surefireArgLine</propertyName>
218 </configuration>
219 </execution>
220
221
222 <execution>
223 <id>post-unit-test</id>
224 <phase>test</phase>
225 <goals>
226 <goal>report</goal>
227 </goals>
228 <configuration>
229 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
230 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
231 </configuration>
232 </execution>
233 <execution>
234 <id>pre-integration-test</id>
235 <phase>pre-integration-test</phase>
236 <goals>
237 <goal>prepare-agent</goal>
238 </goals>
239 <configuration>
240 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
241
242 <propertyName>failsafeArgLine</propertyName>
243 </configuration>
244 </execution>
245
246
247 <execution>
248 <id>post-integration-test</id>
249 <phase>post-integration-test</phase>
250 <goals>
251 <goal>report</goal>
252 </goals>
253 <configuration>
254 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
255 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
256 </configuration>
257 </execution>
258 </executions>
259 </plugin>
sg481nf33ea6d2017-10-01 17:28:44 +0000260
sg481n43854a92017-08-03 17:27:34 -0400261 </plugins>
262 </build>
263
sg481naa2c01c2017-08-25 01:29:57 -0400264 <distributionManagement>
265 <repository>
266 <id>ecomp-releases</id>
267 <name>AAF Release Repository</name>
268 <url>${nexusproxy}${releaseNexusPath}</url>
269 </repository>
270 <snapshotRepository>
271 <id>ecomp-snapshots</id>
272 <name>AAF Snapshot Repository</name>
273 <url>${nexusproxy}${snapshotNexusPath}</url>
274 </snapshotRepository>
275 <site>
276 <id>ecomp-site</id>
277 <url>dav:${nexusproxy}${sitePath}</url>
278 </site>
279 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000280
sg481n43854a92017-08-03 17:27:34 -0400281</project>
282