blob: 3579e1b00a8ed29080e4e07c2c1be664878710c9 [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>
58 <nexusproxy>https://nexus.onap.org</nexusproxy>
59 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
60 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
61 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
62 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
63 </properties>
64
65 <dependencies>
66 <dependency>
67 <groupId>org.onap.aaf.authz</groupId>
68 <artifactId>authz-core</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.onap.aaf.authz</groupId>
73 <artifactId>authz-cass</artifactId>
74 </dependency>
75
76
77 <dependency>
78 <groupId>org.onap.aaf.cadi</groupId>
79 <artifactId>cadi-aaf</artifactId>
80 </dependency>
81
82 <dependency>
83 <groupId>com.google.code.jscep</groupId>
84 <artifactId>jscep</artifactId>
85 <version>2.4.0</version>
86 </dependency>
87 <!-- TESTING -->
88 <dependency>
89 <groupId>org.slf4j</groupId>
90 <artifactId>slf4j-log4j12</artifactId>
91 </dependency>
92 </dependencies>
93
94 <build>
95 <plugins>
96 <plugin>
97 <groupId>org.apache.maven.plugins</groupId>
98 <artifactId>maven-jar-plugin</artifactId>
99 <configuration>
100 <includes>
101 <include>**/*.class</include>
102 </includes>
103 </configuration>
104 <version>2.3.1</version>
105 </plugin>
106
107 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
108
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-deploy-plugin</artifactId>
112 <configuration>
113 <skip>true</skip>
114 </configuration>
115 </plugin>
116
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-javadoc-plugin</artifactId>
120 <configuration>
121 <failOnError>false</failOnError>
122 </configuration>
123 <executions>
124 <execution>
125 <id>attach-javadocs</id>
126 <goals>
127 <goal>jar</goal>
128 </goals>
129 </execution>
130 </executions>
131 </plugin>
132
133
134 <plugin>
135 <groupId>org.apache.maven.plugins</groupId>
136 <artifactId>maven-source-plugin</artifactId>
137 <version>2.2.1</version>
138 <executions>
139 <execution>
140 <id>attach-sources</id>
141 <goals>
142 <goal>jar-no-fork</goal>
143 </goals>
144 </execution>
145 </executions>
146 </plugin>
147 <plugin>
148 <groupId>org.sonatype.plugins</groupId>
149 <artifactId>nexus-staging-maven-plugin</artifactId>
150 <version>1.6.7</version>
151 <extensions>true</extensions>
152 <configuration>
153 <nexusUrl>${nexusproxy}</nexusUrl>
154 <stagingProfileId>176c31dfe190a</stagingProfileId>
155 <serverId>ecomp-staging</serverId>
156 </configuration>
157 </plugin>
158
159 </plugins>
160 <pluginManagement>
161 <plugins/>
162 </pluginManagement>
163 </build>
164<distributionManagement>
165 <repository>
166 <id>ecomp-releases</id>
167 <name>AAF Release Repository</name>
168 <url>${nexusproxy}${releaseNexusPath}</url>
169 </repository>
170 <snapshotRepository>
171 <id>ecomp-snapshots</id>
172 <name>AAF Snapshot Repository</name>
173 <url>${nexusproxy}${snapshotNexusPath}</url>
174 </snapshotRepository>
175 <site>
176 <id>ecomp-site</id>
177 <url>dav:${nexusproxy}${sitePath}</url>
178 </site>
179 </distributionManagement>
180<pluginRepositories>
181 <pluginRepository>
182 <id>onap-plugin-snapshots</id>
183 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
184 </pluginRepository>
185 </pluginRepositories>
186
187 <repositories>
188 <repository>
189 <id>central</id>
190 <name>Maven 2 repository 2</name>
191 <url>http://repo2.maven.org/maven2/</url>
192 </repository>
193 <repository>
194 <id>onap-jar-snapshots</id>
195 <url>https://nexus.onap.org/content/repositories/snapshots</url>
196 </repository>
197 <repository>
198 <id>spring-repo</id>
199 <name>Spring repo</name>
200 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
201 </repository>
202 <repository>
203 <id>repository.jboss.org-public</id>
204 <name>JBoss.org Maven repository</name>
205 <url>https://repository.jboss.org/nexus/content/groups/public</url>
206 </repository>
207 </repositories>
208</project>