blob: 98266d654858672f6f9c3d11bc0b97bc6530f83c [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/maven-v4_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-certman</artifactId>
35 <name>AAF Certification Managmenent</name>
36 <description>Certificate Manager API</description>
37 <url>https://github.com/att/AAF</url>
38 <licenses>
39 <license>
40 <name>BSD License</name>
41 <url> </url>
42 </license>
43 </licenses>
44 <developers>
45 <developer>
46 <name>Jonathan Gathman</name>
47 <email></email>
48 <organization>ATT</organization>
49 <organizationUrl></organizationUrl>
50 </developer>
51 </developers>
52
53
54 <properties>
55 <project.swmVersion>45</project.swmVersion>
56 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
57 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481n40cd3562017-09-01 13:12:31 -040058 <sonar.language>java</sonar.language>
59 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
60 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
61 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
62 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
63 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
64 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040065 <nexusproxy>https://nexus.onap.org</nexusproxy>
66 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
67 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
68 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
69 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
70 </properties>
71
72 <dependencies>
73 <dependency>
74 <groupId>org.onap.aaf.authz</groupId>
75 <artifactId>authz-core</artifactId>
76 </dependency>
77
78 <dependency>
79 <groupId>org.onap.aaf.authz</groupId>
80 <artifactId>authz-cass</artifactId>
81 </dependency>
82
83
84 <dependency>
85 <groupId>org.onap.aaf.cadi</groupId>
86 <artifactId>cadi-aaf</artifactId>
87 </dependency>
88
89 <dependency>
90 <groupId>com.google.code.jscep</groupId>
91 <artifactId>jscep</artifactId>
92 <version>2.4.0</version>
93 </dependency>
94 <!-- TESTING -->
95 <dependency>
96 <groupId>org.slf4j</groupId>
97 <artifactId>slf4j-log4j12</artifactId>
98 </dependency>
99 </dependencies>
100
101 <build>
102 <plugins>
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-jar-plugin</artifactId>
106 <configuration>
107 <includes>
108 <include>**/*.class</include>
109 </includes>
110 </configuration>
111 <version>2.3.1</version>
112 </plugin>
113
114 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
115
116 <plugin>
117 <groupId>org.apache.maven.plugins</groupId>
118 <artifactId>maven-deploy-plugin</artifactId>
119 <configuration>
120 <skip>true</skip>
121 </configuration>
122 </plugin>
123
124 <plugin>
125 <groupId>org.apache.maven.plugins</groupId>
126 <artifactId>maven-javadoc-plugin</artifactId>
127 <configuration>
128 <failOnError>false</failOnError>
129 </configuration>
130 <executions>
131 <execution>
132 <id>attach-javadocs</id>
133 <goals>
134 <goal>jar</goal>
135 </goals>
136 </execution>
137 </executions>
138 </plugin>
139
140
141 <plugin>
142 <groupId>org.apache.maven.plugins</groupId>
143 <artifactId>maven-source-plugin</artifactId>
144 <version>2.2.1</version>
145 <executions>
146 <execution>
147 <id>attach-sources</id>
148 <goals>
149 <goal>jar-no-fork</goal>
150 </goals>
151 </execution>
152 </executions>
153 </plugin>
154 <plugin>
155 <groupId>org.sonatype.plugins</groupId>
156 <artifactId>nexus-staging-maven-plugin</artifactId>
157 <version>1.6.7</version>
158 <extensions>true</extensions>
159 <configuration>
160 <nexusUrl>${nexusproxy}</nexusUrl>
161 <stagingProfileId>176c31dfe190a</stagingProfileId>
162 <serverId>ecomp-staging</serverId>
163 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400164 </plugin>
165 <plugin>
166 <groupId>org.jacoco</groupId>
167 <artifactId>jacoco-maven-plugin</artifactId>
168 <version>0.7.7.201606060606</version>
169 <configuration>
170 <dumpOnExit>true</dumpOnExit>
171 <includes>
172 <include>org.onap.aaf.*</include>
173 </includes>
174 </configuration>
175 <executions>
176 <execution>
177 <id>pre-unit-test</id>
178 <goals>
179 <goal>prepare-agent</goal>
180 </goals>
181 <configuration>
182 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
183 <!-- <append>true</append> -->
184 </configuration>
185 </execution>
186 <execution>
187 <id>pre-integration-test</id>
188 <phase>pre-integration-test</phase>
189 <goals>
190 <goal>prepare-agent</goal>
191 </goals>
192 <configuration>
193 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
194 <!-- <append>true</append> -->
195 </configuration>
196 </execution>
197 <execution>
198 <goals>
199 <goal>merge</goal>
200 </goals>
201 <phase>post-integration-test</phase>
202 <configuration>
203 <fileSets>
204 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
205 <directory>${project.build.directory}/coverage-reports</directory>
206 <includes>
207 <include>*.exec</include>
208 </includes>
209 </fileSet>
210 </fileSets>
211 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
212 </configuration>
213 </execution>
214 </executions>
sg481nbd890c52017-08-28 12:11:35 -0400215 </plugin>
216
217 </plugins>
218 <pluginManagement>
219 <plugins/>
220 </pluginManagement>
221 </build>
222<distributionManagement>
223 <repository>
224 <id>ecomp-releases</id>
225 <name>AAF Release Repository</name>
226 <url>${nexusproxy}${releaseNexusPath}</url>
227 </repository>
228 <snapshotRepository>
229 <id>ecomp-snapshots</id>
230 <name>AAF Snapshot Repository</name>
231 <url>${nexusproxy}${snapshotNexusPath}</url>
232 </snapshotRepository>
233 <site>
234 <id>ecomp-site</id>
235 <url>dav:${nexusproxy}${sitePath}</url>
236 </site>
237 </distributionManagement>
238<pluginRepositories>
239 <pluginRepository>
240 <id>onap-plugin-snapshots</id>
241 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
242 </pluginRepository>
243 </pluginRepositories>
244
245 <repositories>
246 <repository>
247 <id>central</id>
248 <name>Maven 2 repository 2</name>
249 <url>http://repo2.maven.org/maven2/</url>
250 </repository>
251 <repository>
252 <id>onap-jar-snapshots</id>
253 <url>https://nexus.onap.org/content/repositories/snapshots</url>
254 </repository>
255 <repository>
256 <id>spring-repo</id>
257 <name>Spring repo</name>
258 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
259 </repository>
260 <repository>
261 <id>repository.jboss.org-public</id>
262 <name>JBoss.org Maven repository</name>
263 <url>https://repository.jboss.org/nexus/content/groups/public</url>
264 </repository>
265 </repositories>
266</project>