blob: 838f8a7ae4ba04bd1b481e5598f49dc7e56acc5e [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>
sg481n72aacef2017-10-05 16:13:21 +000038
sg481nbd890c52017-08-28 12:11:35 -040039 <developers>
40 <developer>
41 <name>Jonathan Gathman</name>
42 <email></email>
43 <organization>ATT</organization>
44 <organizationUrl></organizationUrl>
45 </developer>
46 </developers>
47
48
49 <properties>
50 <project.swmVersion>45</project.swmVersion>
51 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
52 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
sg481n4ccc6b82017-10-04 17:29:37 +000053 <!-- SONAR -->
54 <jacoco.version>0.7.7.201606060606</jacoco.version>
55 <sonar.skip>true</sonar.skip>
56 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
57 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
58 <!-- Default Sonar configuration -->
59 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
60 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
61 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
62 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
sg481nbd890c52017-08-28 12:11:35 -040063 <nexusproxy>https://nexus.onap.org</nexusproxy>
64 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
65 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
66 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000067 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040068 </properties>
69
70 <dependencies>
71 <dependency>
72 <groupId>org.onap.aaf.authz</groupId>
73 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040074 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040075 </dependency>
76
77 <dependency>
78 <groupId>org.onap.aaf.authz</groupId>
79 <artifactId>authz-cass</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040080 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040081 </dependency>
82
83
84 <dependency>
85 <groupId>org.onap.aaf.cadi</groupId>
86 <artifactId>cadi-aaf</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040087 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040088 </dependency>
89
90 <dependency>
91 <groupId>com.google.code.jscep</groupId>
92 <artifactId>jscep</artifactId>
93 <version>2.4.0</version>
94 </dependency>
95 <!-- TESTING -->
96 <dependency>
97 <groupId>org.slf4j</groupId>
98 <artifactId>slf4j-log4j12</artifactId>
99 </dependency>
100 </dependencies>
101
102 <build>
103 <plugins>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-jar-plugin</artifactId>
107 <configuration>
108 <includes>
109 <include>**/*.class</include>
110 </includes>
111 </configuration>
112 <version>2.3.1</version>
113 </plugin>
114
115 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
116
sg481na2ac6782017-09-18 16:35:50 -0400117
sg481nbd890c52017-08-28 12:11:35 -0400118 <plugin>
119 <groupId>org.apache.maven.plugins</groupId>
120 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000121 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400122 <configuration>
123 <failOnError>false</failOnError>
124 </configuration>
125 <executions>
126 <execution>
127 <id>attach-javadocs</id>
128 <goals>
129 <goal>jar</goal>
130 </goals>
131 </execution>
132 </executions>
sg481na9d21082017-09-23 14:26:06 +0000133 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400134
135
136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-source-plugin</artifactId>
139 <version>2.2.1</version>
140 <executions>
141 <execution>
142 <id>attach-sources</id>
143 <goals>
144 <goal>jar-no-fork</goal>
145 </goals>
146 </execution>
147 </executions>
148 </plugin>
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>
sg481n4ccc6b82017-10-04 17:29:37 +0000161 <groupId>org.jacoco</groupId>
162 <artifactId>jacoco-maven-plugin</artifactId>
163 <version>${jacoco.version}</version>
164 <configuration>
165 <excludes>
166 <exclude>**/gen/**</exclude>
167 <exclude>**/generated-sources/**</exclude>
168 <exclude>**/yang-gen/**</exclude>
169 <exclude>**/pax/**</exclude>
170 </excludes>
171 </configuration>
172 <executions>
sg481nf33ea6d2017-10-01 17:28:44 +0000173
sg481n4ccc6b82017-10-04 17:29:37 +0000174 <execution>
175 <id>pre-unit-test</id>
176 <goals>
177 <goal>prepare-agent</goal>
178 </goals>
179 <configuration>
180 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
181 <propertyName>surefireArgLine</propertyName>
182 </configuration>
183 </execution>
184
185
186 <execution>
187 <id>post-unit-test</id>
188 <phase>test</phase>
189 <goals>
190 <goal>report</goal>
191 </goals>
192 <configuration>
193 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
194 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
195 </configuration>
196 </execution>
197 <execution>
198 <id>pre-integration-test</id>
199 <phase>pre-integration-test</phase>
200 <goals>
201 <goal>prepare-agent</goal>
202 </goals>
203 <configuration>
204 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
205
206 <propertyName>failsafeArgLine</propertyName>
207 </configuration>
208 </execution>
209
210
211 <execution>
212 <id>post-integration-test</id>
213 <phase>post-integration-test</phase>
214 <goals>
215 <goal>report</goal>
216 </goals>
217 <configuration>
218 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
219 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
220 </configuration>
221 </execution>
222 </executions>
223 </plugin>
sg481nbd890c52017-08-28 12:11:35 -0400224
225 </plugins>
226 <pluginManagement>
227 <plugins/>
228 </pluginManagement>
229 </build>
230<distributionManagement>
231 <repository>
232 <id>ecomp-releases</id>
233 <name>AAF Release Repository</name>
234 <url>${nexusproxy}${releaseNexusPath}</url>
235 </repository>
236 <snapshotRepository>
237 <id>ecomp-snapshots</id>
238 <name>AAF Snapshot Repository</name>
239 <url>${nexusproxy}${snapshotNexusPath}</url>
240 </snapshotRepository>
241 <site>
242 <id>ecomp-site</id>
243 <url>dav:${nexusproxy}${sitePath}</url>
244 </site>
245 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000246
sg481nbd890c52017-08-28 12:11:35 -0400247</project>