blob: b779e3edb167a09d358dd8513593f2a5bfbac704 [file] [log] [blame]
sg481nbd890c52017-08-28 12:11:35 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START====================================================
4 * org.onap.aaf
5 * ===========================================================================
6 * Copyright © 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 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
22 *
23-->
24<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26 <modelVersion>4.0.0</modelVersion>
27 <parent>
28 <groupId>org.onap.aaf.authz</groupId>
29 <artifactId>parent</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040030 <version>1.0.1-SNAPSHOT</version>
sg481nbd890c52017-08-28 12:11:35 -040031 <relativePath>../pom.xml</relativePath>
32 </parent>
33
34 <artifactId>authz-core</artifactId>
35 <name>Authz Core</name>
36 <description>Core Libraries for Authz</description>
37 <packaging>jar</packaging>
38 <url>https://github.com/att/AAF</url>
39 <licenses>
40 <license>
41 <name>BSD License</name>
42 <url> </url>
43 </license>
44 </licenses>
45 <developers>
46 <developer>
47 <name>Jonathan Gathman</name>
48 <email></email>
49 <organization>ATT</organization>
50 <organizationUrl></organizationUrl>
51 </developer>
52 </developers>
53<properties>
54 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481na2ac6782017-09-18 16:35:50 -040055 <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion>
sg481n4ccc6b82017-10-04 17:29:37 +000056 <!-- SONAR -->
57 <jacoco.version>0.7.7.201606060606</jacoco.version>
58 <sonar.skip>true</sonar.skip>
59 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
60 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
61 <!-- Default Sonar configuration -->
62 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
63 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
64 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
65 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
sg481nbd890c52017-08-28 12:11:35 -040066 <nexusproxy>https://nexus.onap.org</nexusproxy>
67 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
68 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
69 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481n2bc35382017-09-23 15:50:15 +000070 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040071</properties>
72 <dependencies>
73 <dependency>
74 <groupId>org.onap.aaf.inno</groupId>
75 <artifactId>env</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040076 <version>${project.innoVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040077 </dependency>
78 <dependency>
79 <groupId>org.onap.aaf.inno</groupId>
80 <artifactId>log4j</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040081 <version>${project.innoVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040082 </dependency>
83 <dependency>
84 <groupId>org.onap.aaf.inno</groupId>
85 <artifactId>rosetta</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040086 <version>${project.innoVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040087 </dependency>
88 <dependency>
89 <groupId>org.onap.aaf.cadi</groupId>
90 <artifactId>cadi-aaf</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040091 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040092 <exclusions>
93 <exclusion>
94 <groupId>javax.servlet</groupId>
95 <artifactId>servlet-api</artifactId>
96 </exclusion>
97 </exclusions>
98
99 </dependency>
100 <dependency>
101 <groupId>javax.servlet</groupId>
102 <artifactId>servlet-api</artifactId>
103 </dependency>
104
105 </dependencies>
106
107 <build>
108 <plugins>
109 </plugins>
110 <pluginManagement>
111 <plugins>
sg481na2ac6782017-09-18 16:35:50 -0400112
sg481nbd890c52017-08-28 12:11:35 -0400113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000116 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400117 <configuration>
118 <failOnError>false</failOnError>
119 </configuration>
120 <executions>
121 <execution>
122 <id>attach-javadocs</id>
123 <goals>
124 <goal>jar</goal>
125 </goals>
126 </execution>
127 </executions>
sg481na9d21082017-09-23 14:26:06 +0000128 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400129
130
131 <plugin>
132 <groupId>org.apache.maven.plugins</groupId>
133 <artifactId>maven-source-plugin</artifactId>
134 <version>2.2.1</version>
135 <executions>
136 <execution>
137 <id>attach-sources</id>
138 <goals>
139 <goal>jar-no-fork</goal>
140 </goals>
141 </execution>
142 </executions>
143 </plugin>
144
145 <plugin>
146 <groupId>org.sonatype.plugins</groupId>
147 <artifactId>nexus-staging-maven-plugin</artifactId>
148 <version>1.6.7</version>
149 <extensions>true</extensions>
150 <configuration>
151 <nexusUrl>${nexusproxy}</nexusUrl>
152 <stagingProfileId>176c31dfe190a</stagingProfileId>
153 <serverId>ecomp-staging</serverId>
154 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400155 </plugin>
156 <plugin>
sg481n4ccc6b82017-10-04 17:29:37 +0000157 <groupId>org.jacoco</groupId>
158 <artifactId>jacoco-maven-plugin</artifactId>
159 <version>${jacoco.version}</version>
160 <configuration>
161 <excludes>
162 <exclude>**/gen/**</exclude>
163 <exclude>**/generated-sources/**</exclude>
164 <exclude>**/yang-gen/**</exclude>
165 <exclude>**/pax/**</exclude>
166 </excludes>
167 </configuration>
168 <executions>
169
170 <execution>
171 <id>pre-unit-test</id>
172 <goals>
173 <goal>prepare-agent</goal>
174 </goals>
175 <configuration>
176 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
177 <propertyName>surefireArgLine</propertyName>
178 </configuration>
179 </execution>
180
181
182 <execution>
183 <id>post-unit-test</id>
184 <phase>test</phase>
185 <goals>
186 <goal>report</goal>
187 </goals>
188 <configuration>
189 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
190 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
191 </configuration>
192 </execution>
193 <execution>
194 <id>pre-integration-test</id>
195 <phase>pre-integration-test</phase>
196 <goals>
197 <goal>prepare-agent</goal>
198 </goals>
199 <configuration>
200 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
201
202 <propertyName>failsafeArgLine</propertyName>
203 </configuration>
204 </execution>
205
206
207 <execution>
208 <id>post-integration-test</id>
209 <phase>post-integration-test</phase>
210 <goals>
211 <goal>report</goal>
212 </goals>
213 <configuration>
214 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
215 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
216 </configuration>
217 </execution>
218 </executions>
219 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400220
221 </plugins>
222 </pluginManagement>
223 </build>
224 <distributionManagement>
225 <repository>
226 <id>ecomp-releases</id>
227 <name>AAF Release Repository</name>
228 <url>${nexusproxy}${releaseNexusPath}</url>
229 </repository>
230 <snapshotRepository>
231 <id>ecomp-snapshots</id>
232 <name>AAF Snapshot Repository</name>
233 <url>${nexusproxy}${snapshotNexusPath}</url>
234 </snapshotRepository>
235 <site>
236 <id>ecomp-site</id>
237 <url>dav:${nexusproxy}${sitePath}</url>
238 </site>
239 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000240
sg481nbd890c52017-08-28 12:11:35 -0400241
242</project>
243