blob: 6e822e00659263325259155256c9fe808ca85254 [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>
63 <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>
66 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
67 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
68 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
69 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
70 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
71 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481naa2c01c2017-08-25 01:29:57 -040072 <nexusproxy>https://nexus.onap.org</nexusproxy>
73 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
74 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
75 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000076 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481n43854a92017-08-03 17:27:34 -040077 </properties>
78
79 <dependencies>
80 <dependency>
81 <groupId>junit</groupId>
82 <artifactId>junit</artifactId>
83 <version>4.10</version>
84 <scope>test</scope>
85 </dependency>
86
87 </dependencies>
88
89 <build>
90 <plugins>
91 <plugin>
92 <groupId>org.codehaus.mojo</groupId>
93 <artifactId>jaxb2-maven-plugin</artifactId>
94 <version>1.3</version>
95 <executions>
96 <execution>
97 <phase>generate-sources</phase>
98 <goals>
99 <goal>xjc</goal>
100 </goals>
101 </execution>
102 </executions>
103 <configuration>
104 <schemaDirectory>src/main/xsd</schemaDirectory>
105 </configuration>
106 </plugin>
sg481n43854a92017-08-03 17:27:34 -0400107
108 <!--This plugin's configuration is used to store Eclipse m2e settings
109 only. It has no influence on the Maven build itself. -->
110 <plugin>
111 <groupId>org.eclipse.m2e</groupId>
112 <artifactId>lifecycle-mapping</artifactId>
113 <version>1.0.0</version>
114 <configuration>
115 <lifecycleMappingMetadata>
116 <pluginExecutions>
117 <pluginExecution>
118 <pluginExecutionFilter>
119 <groupId>
120 org.codehaus.mojo
121 </groupId>
122 <artifactId>
123 jaxb2-maven-plugin
124 </artifactId>
125 <versionRange>
126 [1.3,)
127 </versionRange>
128 <goals>
129 <goal>xjc</goal>
130 </goals>
131 </pluginExecutionFilter>
132 <action>
133 <ignore></ignore>
134 </action>
135 </pluginExecution>
136 </pluginExecutions>
137 </lifecycleMappingMetadata>
138 </configuration>
139 </plugin>
140 <plugin>
141 <groupId>org.apache.maven.plugins</groupId>
142 <artifactId>maven-compiler-plugin</artifactId>
143 <version>2.3.2</version>
144 <configuration>
145 <source>1.6</source>
146 <target>1.6</target>
147 </configuration>
148 </plugin>
149
150 <plugin>
151 <groupId>org.apache.maven.plugins</groupId>
152 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000153 <version>2.10.4</version>
sg481n43854a92017-08-03 17:27:34 -0400154 <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>
sg481na9d21082017-09-23 14:26:06 +0000263
sg481n43854a92017-08-03 17:27:34 -0400264</project>
265