blob: ae69cb63342af2c39e5da67e5de23859d09745f1 [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>
sg481naa2c01c2017-08-25 01:29:57 -040063 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481n40cd3562017-09-01 13:12:31 -040064 <sonar.language>java</sonar.language>
65 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
66 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
67 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
68 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
sg481n92685f22017-09-29 01:12:16 +000069 <sonar.jacoco.reportMissing.force.zero>false</sonar.jacoco.reportMissing.force.zero>
sg481n40cd3562017-09-01 13:12:31 -040070 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481naa2c01c2017-08-25 01:29:57 -040071 <nexusproxy>https://nexus.onap.org</nexusproxy>
72 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
73 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
74 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000075 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481n43854a92017-08-03 17:27:34 -040076 </properties>
77
78 <dependencies>
79 <dependency>
80 <groupId>junit</groupId>
81 <artifactId>junit</artifactId>
82 <version>4.10</version>
83 <scope>test</scope>
84 </dependency>
85
86 </dependencies>
87
88 <build>
89 <plugins>
90 <plugin>
91 <groupId>org.codehaus.mojo</groupId>
92 <artifactId>jaxb2-maven-plugin</artifactId>
93 <version>1.3</version>
94 <executions>
95 <execution>
96 <phase>generate-sources</phase>
97 <goals>
98 <goal>xjc</goal>
99 </goals>
100 </execution>
101 </executions>
102 <configuration>
103 <schemaDirectory>src/main/xsd</schemaDirectory>
104 </configuration>
105 </plugin>
sg481n43854a92017-08-03 17:27:34 -0400106
107 <!--This plugin's configuration is used to store Eclipse m2e settings
108 only. It has no influence on the Maven build itself. -->
109 <plugin>
110 <groupId>org.eclipse.m2e</groupId>
111 <artifactId>lifecycle-mapping</artifactId>
112 <version>1.0.0</version>
113 <configuration>
114 <lifecycleMappingMetadata>
115 <pluginExecutions>
116 <pluginExecution>
117 <pluginExecutionFilter>
118 <groupId>
119 org.codehaus.mojo
120 </groupId>
121 <artifactId>
122 jaxb2-maven-plugin
123 </artifactId>
124 <versionRange>
125 [1.3,)
126 </versionRange>
127 <goals>
128 <goal>xjc</goal>
129 </goals>
130 </pluginExecutionFilter>
131 <action>
132 <ignore></ignore>
133 </action>
134 </pluginExecution>
135 </pluginExecutions>
136 </lifecycleMappingMetadata>
137 </configuration>
138 </plugin>
139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-compiler-plugin</artifactId>
142 <version>2.3.2</version>
143 <configuration>
144 <source>1.6</source>
145 <target>1.6</target>
146 </configuration>
147 </plugin>
148
149 <plugin>
150 <groupId>org.apache.maven.plugins</groupId>
151 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000152 <version>2.10.4</version>
sg481n43854a92017-08-03 17:27:34 -0400153 <configuration>
154 <failOnError>false</failOnError>
155 </configuration>
156 <executions>
157 <execution>
158 <id>attach-javadocs</id>
159 <goals>
160 <goal>jar</goal>
161 </goals>
162 </execution>
163 </executions>
164 </plugin>
165
166
167 <plugin>
168 <groupId>org.apache.maven.plugins</groupId>
169 <artifactId>maven-source-plugin</artifactId>
170 <version>2.2.1</version>
171 <executions>
172 <execution>
173 <id>attach-sources</id>
174 <goals>
175 <goal>jar-no-fork</goal>
176 </goals>
177 </execution>
178 </executions>
179 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400180
181 <plugin>
sg481naa2c01c2017-08-25 01:29:57 -0400182 <groupId>org.sonatype.plugins</groupId>
183 <artifactId>nexus-staging-maven-plugin</artifactId>
184 <version>1.6.7</version>
185 <extensions>true</extensions>
186 <configuration>
187 <nexusUrl>${nexusproxy}</nexusUrl>
188 <stagingProfileId>176c31dfe190a</stagingProfileId>
189 <serverId>ecomp-staging</serverId>
190 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400191 </plugin>
192 <plugin>
193 <groupId>org.jacoco</groupId>
194 <artifactId>jacoco-maven-plugin</artifactId>
195 <version>0.7.7.201606060606</version>
196 <configuration>
197 <dumpOnExit>true</dumpOnExit>
sg481n40cd3562017-09-01 13:12:31 -0400198 </configuration>
199 <executions>
200 <execution>
201 <id>pre-unit-test</id>
202 <goals>
203 <goal>prepare-agent</goal>
204 </goals>
205 <configuration>
206 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
207 <!-- <append>true</append> -->
208 </configuration>
209 </execution>
210 <execution>
211 <id>pre-integration-test</id>
212 <phase>pre-integration-test</phase>
213 <goals>
214 <goal>prepare-agent</goal>
215 </goals>
216 <configuration>
217 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
218 <!-- <append>true</append> -->
219 </configuration>
220 </execution>
221 <execution>
222 <goals>
223 <goal>merge</goal>
224 </goals>
225 <phase>post-integration-test</phase>
226 <configuration>
227 <fileSets>
228 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
229 <directory>${project.build.directory}/coverage-reports</directory>
230 <includes>
231 <include>*.exec</include>
232 </includes>
233 </fileSet>
234 </fileSets>
235 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
236 </configuration>
237 </execution>
238 </executions>
sg481naa2c01c2017-08-25 01:29:57 -0400239 </plugin>
sg481n43854a92017-08-03 17:27:34 -0400240 </plugins>
241 </build>
242
sg481naa2c01c2017-08-25 01:29:57 -0400243 <distributionManagement>
244 <repository>
245 <id>ecomp-releases</id>
246 <name>AAF Release Repository</name>
247 <url>${nexusproxy}${releaseNexusPath}</url>
248 </repository>
249 <snapshotRepository>
250 <id>ecomp-snapshots</id>
251 <name>AAF Snapshot Repository</name>
252 <url>${nexusproxy}${snapshotNexusPath}</url>
253 </snapshotRepository>
254 <site>
255 <id>ecomp-site</id>
256 <url>dav:${nexusproxy}${sitePath}</url>
257 </site>
258 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000259
sg481n43854a92017-08-03 17:27:34 -0400260</project>
261