blob: b6df81193fe6a775cef6e5002e596ee2a584a928 [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>
30 <version>1.0.0-SNAPSHOT</version>
31 <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>
sg481n40cd3562017-09-01 13:12:31 -040055 <sonar.language>java</sonar.language>
56 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
57 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
58 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
59 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
60 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
61 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040062 <nexusproxy>https://nexus.onap.org</nexusproxy>
63 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
64 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
65 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
66 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
67</properties>
68 <dependencies>
69 <dependency>
70 <groupId>org.onap.aaf.inno</groupId>
71 <artifactId>env</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040072 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040073 </dependency>
74 <dependency>
75 <groupId>org.onap.aaf.inno</groupId>
76 <artifactId>log4j</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040077 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040078 </dependency>
79 <dependency>
80 <groupId>org.onap.aaf.inno</groupId>
81 <artifactId>rosetta</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040082 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040083 </dependency>
84 <dependency>
85 <groupId>org.onap.aaf.cadi</groupId>
86 <artifactId>cadi-aaf</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040087 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040088 <exclusions>
89 <exclusion>
90 <groupId>javax.servlet</groupId>
91 <artifactId>servlet-api</artifactId>
92 </exclusion>
93 </exclusions>
94
95 </dependency>
96 <dependency>
97 <groupId>javax.servlet</groupId>
98 <artifactId>servlet-api</artifactId>
99 </dependency>
100
101 </dependencies>
102
103 <build>
104 <plugins>
105 </plugins>
106 <pluginManagement>
107 <plugins>
108
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-deploy-plugin</artifactId>
112 <version>2.6</version>
113 <configuration>
114 <skip>false</skip>
115 </configuration>
116 </plugin>
117
118 <plugin>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-javadoc-plugin</artifactId>
121 <configuration>
122 <failOnError>false</failOnError>
123 </configuration>
124 <executions>
125 <execution>
126 <id>attach-javadocs</id>
127 <goals>
128 <goal>jar</goal>
129 </goals>
130 </execution>
131 </executions>
132 </plugin>
133
134
135 <plugin>
136 <groupId>org.apache.maven.plugins</groupId>
137 <artifactId>maven-source-plugin</artifactId>
138 <version>2.2.1</version>
139 <executions>
140 <execution>
141 <id>attach-sources</id>
142 <goals>
143 <goal>jar-no-fork</goal>
144 </goals>
145 </execution>
146 </executions>
147 </plugin>
148
149 <plugin>
150 <groupId>org.sonatype.plugins</groupId>
151 <artifactId>nexus-staging-maven-plugin</artifactId>
152 <version>1.6.7</version>
153 <extensions>true</extensions>
154 <configuration>
155 <nexusUrl>${nexusproxy}</nexusUrl>
156 <stagingProfileId>176c31dfe190a</stagingProfileId>
157 <serverId>ecomp-staging</serverId>
158 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400159 </plugin>
160 <plugin>
161 <groupId>org.jacoco</groupId>
162 <artifactId>jacoco-maven-plugin</artifactId>
163 <version>0.7.7.201606060606</version>
164 <configuration>
165 <dumpOnExit>true</dumpOnExit>
166 <includes>
167 <include>org.onap.aaf.*</include>
168 </includes>
169 </configuration>
170 <executions>
171 <execution>
172 <id>pre-unit-test</id>
173 <goals>
174 <goal>prepare-agent</goal>
175 </goals>
176 <configuration>
177 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
178 <!-- <append>true</append> -->
179 </configuration>
180 </execution>
181 <execution>
182 <id>pre-integration-test</id>
183 <phase>pre-integration-test</phase>
184 <goals>
185 <goal>prepare-agent</goal>
186 </goals>
187 <configuration>
188 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
189 <!-- <append>true</append> -->
190 </configuration>
191 </execution>
192 <execution>
193 <goals>
194 <goal>merge</goal>
195 </goals>
196 <phase>post-integration-test</phase>
197 <configuration>
198 <fileSets>
199 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
200 <directory>${project.build.directory}/coverage-reports</directory>
201 <includes>
202 <include>*.exec</include>
203 </includes>
204 </fileSet>
205 </fileSets>
206 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
207 </configuration>
208 </execution>
209 </executions>
sg481nbd890c52017-08-28 12:11:35 -0400210 </plugin>
211
212 </plugins>
213 </pluginManagement>
214 </build>
215 <distributionManagement>
216 <repository>
217 <id>ecomp-releases</id>
218 <name>AAF Release Repository</name>
219 <url>${nexusproxy}${releaseNexusPath}</url>
220 </repository>
221 <snapshotRepository>
222 <id>ecomp-snapshots</id>
223 <name>AAF Snapshot Repository</name>
224 <url>${nexusproxy}${snapshotNexusPath}</url>
225 </snapshotRepository>
226 <site>
227 <id>ecomp-site</id>
228 <url>dav:${nexusproxy}${sitePath}</url>
229 </site>
230 </distributionManagement>
231<pluginRepositories>
232 <pluginRepository>
233 <id>onap-plugin-snapshots</id>
234 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
235 </pluginRepository>
236 </pluginRepositories>
237
238 <repositories>
239 <repository>
240 <id>central</id>
241 <name>Maven 2 repository 2</name>
242 <url>http://repo2.maven.org/maven2/</url>
243 </repository>
244 <repository>
245 <id>onap-jar-snapshots</id>
246 <url>https://nexus.onap.org/content/repositories/snapshots</url>
247 </repository>
248 <repository>
249 <id>spring-repo</id>
250 <name>Spring repo</name>
251 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
252 </repository>
253 <repository>
254 <id>repository.jboss.org-public</id>
255 <name>JBoss.org Maven repository</name>
256 <url>https://repository.jboss.org/nexus/content/groups/public</url>
257 </repository>
258 </repositories>
259
260</project>
261