blob: 6b085f7c4f182d6a06a304ec0b1841689b241305 [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-gw</artifactId>
35 <name>Authz Gate/Wall</name>
36 <description>GW 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 <properties>
54 <maven.test.failure.ignore>true</maven.test.failure.ignore>
55 <project.swmVersion>30</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 <dependencies>
65 <dependency>
66 <groupId>org.onap.aaf.authz</groupId>
67 <artifactId>authz-core</artifactId>
68
69 <exclusions>
70 <exclusion>
71 <groupId>javax.servlet</groupId>
72 <artifactId>servlet-api</artifactId>
73 </exclusion>
74 </exclusions>
75 </dependency>
76
77 <dependency>
78 <groupId>org.onap.aaf.cadi</groupId>
79 <artifactId>cadi-aaf</artifactId>
80 </dependency>
81
82
83
84 </dependencies>
85
86 <build>
87 <plugins>
88 <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.-->
89 <plugin>
90 <groupId>org.codehaus.mojo</groupId>
91 <artifactId>jaxb2-maven-plugin</artifactId>
92 </plugin>
93 <plugin>
94 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-jar-plugin</artifactId>
96 <configuration>
97 <includes>
98 <include>**/*.class</include>
99 </includes>
100 </configuration>
101 <version>2.3.1</version>
102 </plugin>
103
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-deploy-plugin</artifactId>
107 <configuration>
108 <skip>true</skip>
109 </configuration>
110 </plugin>
111
112
113 <plugin>
114 <groupId>org.apache.maven.plugins</groupId>
115 <artifactId>maven-source-plugin</artifactId>
116 <version>2.2.1</version>
117 <executions>
118 <execution>
119 <id>attach-sources</id>
120 <goals>
121 <goal>jar-no-fork</goal>
122 </goals>
123 </execution>
124 </executions>
125 </plugin>
126
127<plugin>
128 <groupId>org.sonatype.plugins</groupId>
129 <artifactId>nexus-staging-maven-plugin</artifactId>
130 <version>1.6.7</version>
131 <extensions>true</extensions>
132 <configuration>
133 <nexusUrl>${nexusproxy}</nexusUrl>
134 <stagingProfileId>176c31dfe190a</stagingProfileId>
135 <serverId>ecomp-staging</serverId>
136 </configuration>
137 </plugin>
138
139 </plugins>
140 </build>
141<distributionManagement>
142 <repository>
143 <id>ecomp-releases</id>
144 <name>AAF Release Repository</name>
145 <url>${nexusproxy}${releaseNexusPath}</url>
146 </repository>
147 <snapshotRepository>
148 <id>ecomp-snapshots</id>
149 <name>AAF Snapshot Repository</name>
150 <url>${nexusproxy}${snapshotNexusPath}</url>
151 </snapshotRepository>
152 <site>
153 <id>ecomp-site</id>
154 <url>dav:${nexusproxy}${sitePath}</url>
155 </site>
156 </distributionManagement>
157<pluginRepositories>
158 <pluginRepository>
159 <id>onap-plugin-snapshots</id>
160 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
161 </pluginRepository>
162 </pluginRepositories>
163
164 <repositories>
165 <repository>
166 <id>central</id>
167 <name>Maven 2 repository 2</name>
168 <url>http://repo2.maven.org/maven2/</url>
169 </repository>
170 <repository>
171 <id>onap-jar-snapshots</id>
172 <url>https://nexus.onap.org/content/repositories/snapshots</url>
173 </repository>
174 <repository>
175 <id>spring-repo</id>
176 <name>Spring repo</name>
177 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
178 </repository>
179 <repository>
180 <id>repository.jboss.org-public</id>
181 <name>JBoss.org Maven repository</name>
182 <url>https://repository.jboss.org/nexus/content/groups/public</url>
183 </repository>
184 </repositories>
185</project>