blob: 625bde9d3dacc17953f737f24c2248f5a09640a6 [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>
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-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>
sg481n0be0e062017-10-04 03:28:32 +000059 <sonar.skip>true</sonar.skip>
sg481n40cd3562017-09-01 13:12:31 -040060 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
61 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
62 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
63 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
sg481nd84864f2017-10-01 20:56:42 +000064 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
sg481n40cd3562017-09-01 13:12:31 -040065 <sonar.projectVersion>${project.version}</sonar.projectVersion>
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>
sg481na9d21082017-09-23 14:26:06 +000070 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040071 </properties>
72
73 <dependencies>
74 <dependency>
75 <groupId>org.onap.aaf.authz</groupId>
76 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040077 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040078 </dependency>
79
80 <dependency>
81 <groupId>org.onap.aaf.authz</groupId>
82 <artifactId>authz-cass</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040083 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040084 </dependency>
85
86
87 <dependency>
88 <groupId>org.onap.aaf.cadi</groupId>
89 <artifactId>cadi-aaf</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040090 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040091 </dependency>
92
93 <dependency>
94 <groupId>com.google.code.jscep</groupId>
95 <artifactId>jscep</artifactId>
96 <version>2.4.0</version>
97 </dependency>
98 <!-- TESTING -->
99 <dependency>
100 <groupId>org.slf4j</groupId>
101 <artifactId>slf4j-log4j12</artifactId>
102 </dependency>
103 </dependencies>
104
105 <build>
106 <plugins>
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-jar-plugin</artifactId>
110 <configuration>
111 <includes>
112 <include>**/*.class</include>
113 </includes>
114 </configuration>
115 <version>2.3.1</version>
116 </plugin>
117
118 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
119
sg481na2ac6782017-09-18 16:35:50 -0400120
sg481nbd890c52017-08-28 12:11:35 -0400121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000124 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400125 <configuration>
126 <failOnError>false</failOnError>
127 </configuration>
128 <executions>
129 <execution>
130 <id>attach-javadocs</id>
131 <goals>
132 <goal>jar</goal>
133 </goals>
134 </execution>
135 </executions>
sg481na9d21082017-09-23 14:26:06 +0000136 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400137
138
139 <plugin>
140 <groupId>org.apache.maven.plugins</groupId>
141 <artifactId>maven-source-plugin</artifactId>
142 <version>2.2.1</version>
143 <executions>
144 <execution>
145 <id>attach-sources</id>
146 <goals>
147 <goal>jar-no-fork</goal>
148 </goals>
149 </execution>
150 </executions>
151 </plugin>
152 <plugin>
153 <groupId>org.sonatype.plugins</groupId>
154 <artifactId>nexus-staging-maven-plugin</artifactId>
155 <version>1.6.7</version>
156 <extensions>true</extensions>
157 <configuration>
158 <nexusUrl>${nexusproxy}</nexusUrl>
159 <stagingProfileId>176c31dfe190a</stagingProfileId>
160 <serverId>ecomp-staging</serverId>
161 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400162 </plugin>
163 <plugin>
sg481n2783a8d2017-10-02 04:11:12 +0000164 <groupId>org.jacoco</groupId>
165 <artifactId>jacoco-maven-plugin</artifactId>
166 <version>0.7.7.201606060606</version>
167 <configuration>
168 <dumpOnExit>true</dumpOnExit>
169 <includes>
170 <include>org.onap.aaf.*</include>
171 </includes>
172 </configuration>
173 <executions>
174 <execution>
175 <id>pre-unit-test</id>
176 <goals>
177 <goal>prepare-agent</goal>
178 </goals>
179 <configuration>
180 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
181 <!-- <append>true</append> -->
182 </configuration>
183 </execution>
184 <execution>
185 <id>pre-integration-test</id>
186 <phase>pre-integration-test</phase>
187 <goals>
188 <goal>prepare-agent</goal>
189 </goals>
190 <configuration>
191 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
192 <!-- <append>true</append> -->
193 </configuration>
194 </execution>
195 <execution>
196 <goals>
197 <goal>merge</goal>
198 </goals>
199 <phase>post-integration-test</phase>
200 <configuration>
201 <fileSets>
202 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
203 <directory>${project.build.directory}/coverage-reports</directory>
204 <includes>
205 <include>*.exec</include>
206 </includes>
207 </fileSet>
208 </fileSets>
209 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
210 </configuration>
211 </execution>
212 </executions>
213 </plugin>
sg481nf33ea6d2017-10-01 17:28:44 +0000214
sg481nbd890c52017-08-28 12:11:35 -0400215
216 </plugins>
217 <pluginManagement>
218 <plugins/>
219 </pluginManagement>
220 </build>
221<distributionManagement>
222 <repository>
223 <id>ecomp-releases</id>
224 <name>AAF Release Repository</name>
225 <url>${nexusproxy}${releaseNexusPath}</url>
226 </repository>
227 <snapshotRepository>
228 <id>ecomp-snapshots</id>
229 <name>AAF Snapshot Repository</name>
230 <url>${nexusproxy}${snapshotNexusPath}</url>
231 </snapshotRepository>
232 <site>
233 <id>ecomp-site</id>
234 <url>dav:${nexusproxy}${sitePath}</url>
235 </site>
236 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000237
sg481nbd890c52017-08-28 12:11:35 -0400238</project>