blob: 1473a1c89101104a0747f3b412326b6be8f26fed [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>
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>
sg481na9d21082017-09-23 14:26:06 +000069 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040070 </properties>
71
72 <dependencies>
73 <dependency>
74 <groupId>org.onap.aaf.authz</groupId>
75 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040076 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040077 </dependency>
78
79 <dependency>
80 <groupId>org.onap.aaf.authz</groupId>
81 <artifactId>authz-cass</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040082 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040083 </dependency>
84
85
86 <dependency>
87 <groupId>org.onap.aaf.cadi</groupId>
88 <artifactId>cadi-aaf</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040089 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040090 </dependency>
91
92 <dependency>
93 <groupId>com.google.code.jscep</groupId>
94 <artifactId>jscep</artifactId>
95 <version>2.4.0</version>
96 </dependency>
97 <!-- TESTING -->
98 <dependency>
99 <groupId>org.slf4j</groupId>
100 <artifactId>slf4j-log4j12</artifactId>
101 </dependency>
102 </dependencies>
103
104 <build>
105 <plugins>
106 <plugin>
107 <groupId>org.apache.maven.plugins</groupId>
108 <artifactId>maven-jar-plugin</artifactId>
109 <configuration>
110 <includes>
111 <include>**/*.class</include>
112 </includes>
113 </configuration>
114 <version>2.3.1</version>
115 </plugin>
116
117 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
118
sg481na2ac6782017-09-18 16:35:50 -0400119
sg481nbd890c52017-08-28 12:11:35 -0400120 <plugin>
121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000123 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400124 <configuration>
125 <failOnError>false</failOnError>
126 </configuration>
127 <executions>
128 <execution>
129 <id>attach-javadocs</id>
130 <goals>
131 <goal>jar</goal>
132 </goals>
133 </execution>
134 </executions>
sg481na9d21082017-09-23 14:26:06 +0000135 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400136
137
138 <plugin>
139 <groupId>org.apache.maven.plugins</groupId>
140 <artifactId>maven-source-plugin</artifactId>
141 <version>2.2.1</version>
142 <executions>
143 <execution>
144 <id>attach-sources</id>
145 <goals>
146 <goal>jar-no-fork</goal>
147 </goals>
148 </execution>
149 </executions>
150 </plugin>
151 <plugin>
152 <groupId>org.sonatype.plugins</groupId>
153 <artifactId>nexus-staging-maven-plugin</artifactId>
154 <version>1.6.7</version>
155 <extensions>true</extensions>
156 <configuration>
157 <nexusUrl>${nexusproxy}</nexusUrl>
158 <stagingProfileId>176c31dfe190a</stagingProfileId>
159 <serverId>ecomp-staging</serverId>
160 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400161 </plugin>
162 <plugin>
163 <groupId>org.jacoco</groupId>
164 <artifactId>jacoco-maven-plugin</artifactId>
165 <version>0.7.7.201606060606</version>
166 <configuration>
167 <dumpOnExit>true</dumpOnExit>
168 <includes>
169 <include>org.onap.aaf.*</include>
170 </includes>
171 </configuration>
172 <executions>
173 <execution>
174 <id>pre-unit-test</id>
175 <goals>
176 <goal>prepare-agent</goal>
177 </goals>
178 <configuration>
179 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
180 <!-- <append>true</append> -->
181 </configuration>
182 </execution>
183 <execution>
184 <id>pre-integration-test</id>
185 <phase>pre-integration-test</phase>
186 <goals>
187 <goal>prepare-agent</goal>
188 </goals>
189 <configuration>
190 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
191 <!-- <append>true</append> -->
192 </configuration>
193 </execution>
194 <execution>
195 <goals>
196 <goal>merge</goal>
197 </goals>
198 <phase>post-integration-test</phase>
199 <configuration>
200 <fileSets>
201 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
202 <directory>${project.build.directory}/coverage-reports</directory>
203 <includes>
204 <include>*.exec</include>
205 </includes>
206 </fileSet>
207 </fileSets>
208 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
209 </configuration>
210 </execution>
211 </executions>
sg481nbd890c52017-08-28 12:11:35 -0400212 </plugin>
213
214 </plugins>
215 <pluginManagement>
216 <plugins/>
217 </pluginManagement>
218 </build>
219<distributionManagement>
220 <repository>
221 <id>ecomp-releases</id>
222 <name>AAF Release Repository</name>
223 <url>${nexusproxy}${releaseNexusPath}</url>
224 </repository>
225 <snapshotRepository>
226 <id>ecomp-snapshots</id>
227 <name>AAF Snapshot Repository</name>
228 <url>${nexusproxy}${snapshotNexusPath}</url>
229 </snapshotRepository>
230 <site>
231 <id>ecomp-site</id>
232 <url>dav:${nexusproxy}${sitePath}</url>
233 </site>
234 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000235
sg481nbd890c52017-08-28 12:11:35 -0400236</project>