blob: 677d84db355051092b804809bf250d4e4522022b [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-service</artifactId>
35 <name>Authz Service</name>
36 <description>API for Authorization and Authentication</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 <properties>
54 <maven.test.failure.ignore>true</maven.test.failure.ignore>
55 <project.swmVersion>1</project.swmVersion>
56 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
57 <nexusproxy>https://nexus.onap.org</nexusproxy>
58 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
59 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
60 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
61 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
62 </properties>
63
64
65 <dependencies>
66 <dependency>
67 <groupId>org.onap.aaf.authz</groupId>
68 <artifactId>authz-client</artifactId>
69 </dependency>
70
71 <dependency>
72 <groupId>org.onap.aaf.authz</groupId>
73 <artifactId>authz-core</artifactId>
74 <exclusions>
75 <exclusion>
76 <groupId>javax.servlet</groupId>
77 <artifactId>servlet-api</artifactId>
78 </exclusion>
79 </exclusions>
80 </dependency>
81
82 <dependency>
83 <groupId>org.onap.aaf.authz</groupId>
84 <artifactId>authz-cass</artifactId>
85 </dependency>
86
87 <dependency>
88 <groupId>org.onap.aaf.authz</groupId>
89 <artifactId>authz-defOrg</artifactId>
90 <version>${project.version}</version>
91 </dependency>
92
93
94
95 <dependency >
96 <groupId>org.onap.aaf.inno</groupId>
97 <artifactId>env</artifactId>
98 </dependency>
99
100
101 <dependency>
102 <groupId>org.onap.aaf.cadi</groupId>
103 <artifactId>cadi-core</artifactId>
104 </dependency>
105
106 <dependency>
107 <groupId>com.att.aft</groupId>
108 <artifactId>dme2</artifactId>
109 </dependency>
110
111 <dependency>
112 <groupId>org.onap.aaf.inno</groupId>
113 <artifactId>rosetta</artifactId>
114 </dependency>
115 <dependency>
116 <groupId>org.onap.aaf.cadi</groupId>
117 <artifactId>cadi-aaf</artifactId>
118 </dependency>
119
120
121
122
123 </dependencies>
124
125 <build>
126 <plugins>
127 <plugin>
128 <groupId>org.codehaus.mojo</groupId>
129 <artifactId>exec-maven-plugin</artifactId>
130 <version>1.5.0</version>
131 <configuration>
132 <executable>java</executable>
133 <arguments>
134 <argument>-DAFT_LATITUDE=33</argument>
135 <argument>-DAFT_LONGITUDE=-84</argument>
136 <argument>-DAFT_ENVIRONMENT=AFTUAT</argument>
137
138 <argument>-XX:NewRatio=3</argument>
139 <argument>-XX:+PrintGCTimeStamps</argument>
140 <argument>-XX:+PrintGCDetails</argument>
141 <argument>-Xloggc:gc.log</argument>
142 <argument>-classpath</argument>
143
144 <classpath>
145
146 </classpath>
147 <argument>org.onap.aaf.authz.service.AuthAPI</argument>
148
149 <argument>service=org.onap.aaf.authz.AuthorizationService/version=2.0/envContext=DEV/routeOffer=Dev</argument>
150 </arguments>
151 </configuration>
152 </plugin>
153
154 <plugin>
155 <groupId>org.apache.maven.plugins</groupId>
156 <artifactId>maven-jar-plugin</artifactId>
157 <configuration>
158 <excludes>
159 <exclude>*.properties</exclude>
160 </excludes>
161 </configuration>
162 <version>2.3.1</version>
163 </plugin>
164
165 <plugin>
166 <groupId>org.apache.maven.plugins</groupId>
167 <artifactId>maven-deploy-plugin</artifactId>
168 <configuration>
169 <skip>true</skip>
170 </configuration>
171 </plugin>
172
173 <plugin>
174 <groupId>org.apache.maven.plugins</groupId>
175 <artifactId>maven-javadoc-plugin</artifactId>
176 <configuration>
177 <failOnError>false</failOnError>
178 </configuration>
179 <executions>
180 <execution>
181 <id>attach-javadocs</id>
182 <goals>
183 <goal>jar</goal>
184 </goals>
185 </execution>
186 </executions>
187 </plugin>
188
189
190 <plugin>
191 <groupId>org.apache.maven.plugins</groupId>
192 <artifactId>maven-source-plugin</artifactId>
193 <version>2.2.1</version>
194 <executions>
195 <execution>
196 <id>attach-sources</id>
197 <goals>
198 <goal>jar-no-fork</goal>
199 </goals>
200 </execution>
201 </executions>
202 </plugin>
203
204<plugin>
205 <groupId>org.sonatype.plugins</groupId>
206 <artifactId>nexus-staging-maven-plugin</artifactId>
207 <version>1.6.7</version>
208 <extensions>true</extensions>
209 <configuration>
210 <nexusUrl>${nexusproxy}</nexusUrl>
211 <stagingProfileId>176c31dfe190a</stagingProfileId>
212 <serverId>ecomp-staging</serverId>
213 </configuration>
214 </plugin>
215
216 </plugins>
217
218 </build>
219
220 <distributionManagement>
221 <repository>
222 <id>ecomp-releases</id>
223 <name>AAF Release Repository</name>
224 <url>${nexusproxy}${releaseNexusPath}</url>
225 </repository>
226 <snapshotRepository>
227 <id>ecomp-snapshots</id>
228 <name>AAF Snapshot Repository</name>
229 <url>${nexusproxy}${snapshotNexusPath}</url>
230 </snapshotRepository>
231 <site>
232 <id>ecomp-site</id>
233 <url>dav:${nexusproxy}${sitePath}</url>
234 </site>
235 </distributionManagement>
236<pluginRepositories>
237 <pluginRepository>
238 <id>onap-plugin-snapshots</id>
239 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
240 </pluginRepository>
241 </pluginRepositories>
242
243 <repositories>
244 <repository>
245 <id>central</id>
246 <name>Maven 2 repository 2</name>
247 <url>http://repo2.maven.org/maven2/</url>
248 </repository>
249 <repository>
250 <id>onap-jar-snapshots</id>
251 <url>https://nexus.onap.org/content/repositories/snapshots</url>
252 </repository>
253 <repository>
254 <id>spring-repo</id>
255 <name>Spring repo</name>
256 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
257 </repository>
258 <repository>
259 <id>repository.jboss.org-public</id>
260 <name>JBoss.org Maven repository</name>
261 <url>https://repository.jboss.org/nexus/content/groups/public</url>
262 </repository>
263 </repositories>
264</project>