blob: 902e58dc8466f9263a57ee8cfe2c200521b92298 [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>
sg481n40cd3562017-09-01 13:12:31 -040065 <sonar.language>java</sonar.language>
sg481n0be0e062017-10-04 03:28:32 +000066 <sonar.skip>true</sonar.skip>
sg481n40cd3562017-09-01 13:12:31 -040067 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
68 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
69 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
70 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
sg481nd84864f2017-10-01 20:56:42 +000071 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
sg481n40cd3562017-09-01 13:12:31 -040072 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481naa2c01c2017-08-25 01:29:57 -040073 <nexusproxy>https://nexus.onap.org</nexusproxy>
74 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
75 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
76 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000077 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481n43854a92017-08-03 17:27:34 -040078 </properties>
79
80 <dependencies>
81 <dependency>
82 <groupId>junit</groupId>
83 <artifactId>junit</artifactId>
84 <version>4.10</version>
85 <scope>test</scope>
86 </dependency>
87
88 </dependencies>
89
90 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.codehaus.mojo</groupId>
94 <artifactId>jaxb2-maven-plugin</artifactId>
95 <version>1.3</version>
96 <executions>
97 <execution>
98 <phase>generate-sources</phase>
99 <goals>
100 <goal>xjc</goal>
101 </goals>
102 </execution>
103 </executions>
104 <configuration>
105 <schemaDirectory>src/main/xsd</schemaDirectory>
106 </configuration>
107 </plugin>
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>
sg481na9d21082017-09-23 14:26:06 +0000154 <version>2.10.4</version>
sg481n43854a92017-08-03 17:27:34 -0400155 <configuration>
156 <failOnError>false</failOnError>
157 </configuration>
158 <executions>
159 <execution>
160 <id>attach-javadocs</id>
161 <goals>
162 <goal>jar</goal>
163 </goals>
164 </execution>
165 </executions>
166 </plugin>
167
168
169 <plugin>
170 <groupId>org.apache.maven.plugins</groupId>
171 <artifactId>maven-source-plugin</artifactId>
172 <version>2.2.1</version>
173 <executions>
174 <execution>
175 <id>attach-sources</id>
176 <goals>
177 <goal>jar-no-fork</goal>
178 </goals>
179 </execution>
180 </executions>
181 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400182
183 <plugin>
sg481naa2c01c2017-08-25 01:29:57 -0400184 <groupId>org.sonatype.plugins</groupId>
185 <artifactId>nexus-staging-maven-plugin</artifactId>
186 <version>1.6.7</version>
187 <extensions>true</extensions>
188 <configuration>
189 <nexusUrl>${nexusproxy}</nexusUrl>
190 <stagingProfileId>176c31dfe190a</stagingProfileId>
191 <serverId>ecomp-staging</serverId>
192 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400193 </plugin>
194 <plugin>
sg481n2783a8d2017-10-02 04:11:12 +0000195 <groupId>org.jacoco</groupId>
196 <artifactId>jacoco-maven-plugin</artifactId>
197 <version>0.7.7.201606060606</version>
198 <configuration>
199 <dumpOnExit>true</dumpOnExit>
200 <includes>
201 <include>org.onap.aaf.*</include>
202 </includes>
203 </configuration>
204 <executions>
205 <execution>
206 <id>pre-unit-test</id>
207 <goals>
208 <goal>prepare-agent</goal>
209 </goals>
210 <configuration>
211 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
212 <!-- <append>true</append> -->
213 </configuration>
214 </execution>
215 <execution>
216 <id>pre-integration-test</id>
217 <phase>pre-integration-test</phase>
218 <goals>
219 <goal>prepare-agent</goal>
220 </goals>
221 <configuration>
222 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
223 <!-- <append>true</append> -->
224 </configuration>
225 </execution>
226 <execution>
227 <goals>
228 <goal>merge</goal>
229 </goals>
230 <phase>post-integration-test</phase>
231 <configuration>
232 <fileSets>
233 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
234 <directory>${project.build.directory}/coverage-reports</directory>
235 <includes>
236 <include>*.exec</include>
237 </includes>
238 </fileSet>
239 </fileSets>
240 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
241 </configuration>
242 </execution>
243 </executions>
244 </plugin>
sg481nf33ea6d2017-10-01 17:28:44 +0000245
sg481n43854a92017-08-03 17:27:34 -0400246 </plugins>
247 </build>
248
sg481naa2c01c2017-08-25 01:29:57 -0400249 <distributionManagement>
250 <repository>
251 <id>ecomp-releases</id>
252 <name>AAF Release Repository</name>
253 <url>${nexusproxy}${releaseNexusPath}</url>
254 </repository>
255 <snapshotRepository>
256 <id>ecomp-snapshots</id>
257 <name>AAF Snapshot Repository</name>
258 <url>${nexusproxy}${snapshotNexusPath}</url>
259 </snapshotRepository>
260 <site>
261 <id>ecomp-site</id>
262 <url>dav:${nexusproxy}${sitePath}</url>
263 </site>
264 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000265
sg481n43854a92017-08-03 17:27:34 -0400266</project>
267