blob: 53e07816ffd5764009d7651a55dffe71c55489ed [file] [log] [blame]
sg481n43854a92017-08-03 17:27:34 -04001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START====================================================
4 * org.onap.aai
5 * ===========================================================================
6 * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
7 * Copyright © 2017 Amdocs
8 * ===========================================================================
9 * Licensed under the Apache License, Version 2.0 (the "License");
10 * you may not use this file except in compliance with the License.
11 * You may obtain a copy of the License at
12 *
13 * http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 * ============LICENSE_END====================================================
21 *
22 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
23 *
24-->
25<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
27 <modelVersion>4.0.0</modelVersion>
28 <parent>
29 <groupId>com.att.authz</groupId>
30 <artifactId>parent</artifactId>
31 <version>2.0.15</version>
32 <relativePath>../pom.xml</relativePath>
33 </parent>
34
35 <artifactId>authz-certman</artifactId>
36 <name>AAF Certification Managmenent</name>
37 <description>Certificate Manager API</description>
38 <url>https://github.com/att/AAF</url>
39 <licenses>
40 <license>
41 <name>BSD License</name>
42 <url> </url>
43 </license>
44 </licenses>
45 <developers>
46 <developer>
47 <name>Jonathan Gathman</name>
48 <email></email>
49 <organization>ATT</organization>
50 <organizationUrl></organizationUrl>
51 </developer>
52 </developers>
53
54
55 <properties>
56 <project.swmVersion>45</project.swmVersion>
57 </properties>
58
59 <dependencies>
60 <dependency>
61 <groupId>com.att.authz</groupId>
62 <artifactId>authz-core</artifactId>
63 </dependency>
64
65 <dependency>
66 <groupId>com.att.authz</groupId>
67 <artifactId>authz-cass</artifactId>
68 </dependency>
69
70 <!-- <dependency>
71 <groupId>com.att.authz</groupId>
72 <artifactId>authz-att</artifactId>
73 </dependency> -->
74
75 <dependency>
76 <groupId>com.att.cadi</groupId>
77 <artifactId>cadi-aaf</artifactId>
78 </dependency>
79
80 <dependency>
81 <groupId>com.google.code.jscep</groupId>
82 <artifactId>jscep</artifactId>
83 <version>2.4.0</version>
84 </dependency>
85 <!-- TESTING -->
86 <dependency>
87 <groupId>org.slf4j</groupId>
88 <artifactId>slf4j-log4j12</artifactId>
89 </dependency>
90 </dependencies>
91
92 <build>
93 <plugins>
94 <plugin>
95 <groupId>org.apache.maven.plugins</groupId>
96 <artifactId>maven-jar-plugin</artifactId>
97 <configuration>
98 <includes>
99 <include>**/*.class</include>
100 </includes>
101 </configuration>
102 <version>2.3.1</version>
103 </plugin>
104
105 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
106
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-deploy-plugin</artifactId>
110 <configuration>
111 <skip>true</skip>
112 </configuration>
113 </plugin>
114
115 <plugin>
116 <groupId>org.apache.maven.plugins</groupId>
117 <artifactId>maven-javadoc-plugin</artifactId>
118 <configuration>
119 <failOnError>false</failOnError>
120 </configuration>
121 <executions>
122 <execution>
123 <id>attach-javadocs</id>
124 <goals>
125 <goal>jar</goal>
126 </goals>
127 </execution>
128 </executions>
129 </plugin>
130
131
132 <plugin>
133 <groupId>org.apache.maven.plugins</groupId>
134 <artifactId>maven-source-plugin</artifactId>
135 <version>2.2.1</version>
136 <executions>
137 <execution>
138 <id>attach-sources</id>
139 <goals>
140 <goal>jar-no-fork</goal>
141 </goals>
142 </execution>
143 </executions>
144 </plugin>
145
146 <plugin>
147 <groupId>org.sonatype.plugins</groupId>
148 <artifactId>nexus-staging-maven-plugin</artifactId>
149 <version>1.6.7</version>
150 <extensions>true</extensions>
151 <configuration>
152 <serverId>ossrhdme</serverId>
153 <nexusUrl>https://oss.sonatype.org/</nexusUrl>
154 <autoReleaseAfterClose>true</autoReleaseAfterClose>
155 </configuration>
156 </plugin>
157 </plugins>
158 <pluginManagement>
159 <plugins/>
160 </pluginManagement>
161 </build>
162
163 <distributionManagement>
164 <snapshotRepository>
165 <id>ossrhdme</id>
166 <url>https://oss.sonatype.org/content/repositories/snapshots</url>
167 </snapshotRepository>
168 <repository>
169 <id>ossrhdme</id>
170 <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
171 </repository>
172 </distributionManagement>
173
174 <scm>
175 <connection>https://github.com/att/AAF.git</connection>
176 <developerConnection>${project.scm.connection}</developerConnection>
177 <url>http://github.com/att/AAF/tree/master</url>
178 </scm>
179</project>