blob: 9f0bef76bee53b5cba61fb570be4410b755fc56a [file] [log] [blame]
Sai Gandham34e9cfe2018-04-09 20:43:47 +00001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 * ============LICENSE_START====================================================
4 * org.onap.aaf
5 * ===========================================================================
6 * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
7 * ===========================================================================
8 * Licensed under the Apache License, Version 2.0 (the "License");
9 * you may not use this file except in compliance with the License.
10 * You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing, software
15 * distributed under the License is distributed on an "AS IS" BASIS,
16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 * See the License for the specific language governing permissions and
18 * limitations under the License.
19 * ============LICENSE_END====================================================
20 *
21-->
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
26 <groupId>org.onap.aaf.authz</groupId>
27 <artifactId>parent</artifactId>
28 <version>2.1.0-SNAPSHOT</version>
29 </parent>
30
Sai Gandham34e9cfe2018-04-09 20:43:47 +000031 <artifactId>aaf-auth-client</artifactId>
32 <name>AAF Auth Client</name>
33 <description>XSD Generated classes for AAF Auth</description>
Sai Gandham34e9cfe2018-04-09 20:43:47 +000034 <packaging>jar</packaging>
35
36 <properties>
37 <project.interfaceVersion>2.1.0-SNAPSHOT</project.interfaceVersion>
38 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39 <maven.test.failure.ignore>true</maven.test.failure.ignore>
40 <!-- SONAR -->
41 <sonar.skip>true</sonar.skip>
42 <jacoco.version>0.7.7.201606060606</jacoco.version>
43 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
44 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
45 <!-- Default Sonar configuration -->
46 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
47 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
48 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
49 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
50 <nexusproxy>https://nexus.onap.org</nexusproxy>
51 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
52 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
53 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Sai Gandham30dca6e2018-04-09 21:22:48 +000054 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
Sai Gandham34e9cfe2018-04-09 20:43:47 +000055 </properties>
56
57 <developers>
58 <developer>
59 <name>Jonathan Gathman</name>
60 <email>jonathan.gathman@att.com</email>
61 <organization>ATT</organization>
62 <roles>
63 <role>Architect</role>
64 <role>Lead Developer</role>
65 </roles>
66 </developer>
67 <developer>
68 <name>Gabe Maurer</name>
69 <email>gabe.maurer@att.com</email>
70 <organization>ATT</organization>
71 <roles>
72 <role>Developer</role>
73 </roles>
74 </developer>
75 <developer>
76 <name>Ian Howell</name>
77 <email>ian.howell@att.com</email>
78 <organization>ATT</organization>
79 <roles>
80 <role>Developer</role>
81 </roles>
82 </developer>
83 <developer>
84 <name>Sai Gandham</name>
85 <email>sai.gandham@att.com</email>
86 <organization>ATT</organization>
87 <roles>
88 <role>Developer</role>
89 </roles>
90 </developer>
91 </developers>
92
93
94 <dependencies>
95 <dependency>
96 <groupId>junit</groupId>
97 <artifactId>junit</artifactId>
98 <version>4.10</version>
99 <scope>test</scope>
100 </dependency>
101
102 </dependencies>
103
104 <build>
105 <plugins>
106 <plugin>
107 <groupId>org.jvnet.jaxb2.maven2</groupId>
108 <artifactId>maven-jaxb2-plugin</artifactId>
109 <version>0.8.2</version>
110 <executions>
111 <execution>
112 <goals>
113 <goal>generate</goal>
114 </goals>
115 </execution>
116 </executions>
117 <configuration>
118 <schemaDirectory>src/main/xsd</schemaDirectory>
119 </configuration>
120 </plugin>
121
122 <plugin>
123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-deploy-plugin</artifactId>
125 <version>2.5</version>
126 <configuration>
127 <skip>false</skip>
128 </configuration>
129 </plugin>
130
131 <plugin>
132 <groupId>org.apache.maven.plugins</groupId>
133 <artifactId>maven-compiler-plugin</artifactId>
134 <version>2.3.2</version>
135 <configuration>
136 <source>1.6</source>
137 <target>1.6</target>
138 </configuration>
139 </plugin>
140 <plugin>
141 <groupId>org.sonatype.plugins</groupId>
142 <artifactId>nexus-staging-maven-plugin</artifactId>
143 <version>1.6.7</version>
144 <extensions>true</extensions>
145 <configuration>
146 <nexusUrl>${nexusproxy}</nexusUrl>
147 <stagingProfileId>176c31dfe190a</stagingProfileId>
148 <serverId>ecomp-staging</serverId>
149 </configuration>
150 </plugin>
151 <plugin>
152 <groupId>org.jacoco</groupId>
153 <artifactId>jacoco-maven-plugin</artifactId>
154 <version>0.7.7.201606060606</version>
155 <configuration>
156 <dumpOnExit>true</dumpOnExit>
157 <includes>
158 <include>org.onap.aaf.*</include>
159 </includes>
160 </configuration>
161 <executions>
162 <execution>
163 <id>pre-unit-test</id>
164 <goals>
165 <goal>prepare-agent</goal>
166 </goals>
167 <configuration>
168 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
169 <!-- <append>true</append> -->
170 </configuration>
171 </execution>
172 <execution>
173 <id>pre-integration-test</id>
174 <phase>pre-integration-test</phase>
175 <goals>
176 <goal>prepare-agent</goal>
177 </goals>
178 <configuration>
179 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
180 <!-- <append>true</append> -->
181 </configuration>
182 </execution>
183 <execution>
184 <goals>
185 <goal>merge</goal>
186 </goals>
187 <phase>post-integration-test</phase>
188 <configuration>
189 <fileSets>
190 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
191 <directory>${project.build.directory}/coverage-reports</directory>
192 <includes>
193 <include>*.exec</include>
194 </includes>
195 </fileSet>
196 </fileSets>
197 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
198 </configuration>
199 </execution>
200 </executions>
201 </plugin>
202 </plugins>
203 </build>
204
205 <distributionManagement>
206 <repository>
207 <id>ecomp-releases</id>
208 <name>AAF Release Repository</name>
209 <url>${nexusproxy}${releaseNexusPath}</url>
210 </repository>
211 <snapshotRepository>
212 <id>ecomp-snapshots</id>
213 <name>AAF Snapshot Repository</name>
214 <url>${nexusproxy}${snapshotNexusPath}</url>
215 </snapshotRepository>
216 <site>
217 <id>ecomp-site</id>
218 <url>dav:${nexusproxy}${sitePath}</url>
219 </site>
220 </distributionManagement>
221</project>
222