blob: 085110dfabda06ac03d23808c4c07c69983ddc83 [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/xsd/maven-4.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-core</artifactId>
35 <name>Authz Core</name>
36 <description>Core Libraries for Authz</description>
37 <packaging>jar</packaging>
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<properties>
54 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
55 <nexusproxy>https://nexus.onap.org</nexusproxy>
56 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
57 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
58 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
59 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
60</properties>
61 <dependencies>
62 <dependency>
63 <groupId>org.onap.aaf.inno</groupId>
64 <artifactId>env</artifactId>
65 </dependency>
66 <dependency>
67 <groupId>org.onap.aaf.inno</groupId>
68 <artifactId>log4j</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>org.onap.aaf.inno</groupId>
72 <artifactId>rosetta</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>org.onap.aaf.cadi</groupId>
76 <artifactId>cadi-aaf</artifactId>
77 <exclusions>
78 <exclusion>
79 <groupId>javax.servlet</groupId>
80 <artifactId>servlet-api</artifactId>
81 </exclusion>
82 </exclusions>
83
84 </dependency>
85 <dependency>
86 <groupId>javax.servlet</groupId>
87 <artifactId>servlet-api</artifactId>
88 </dependency>
89
90 </dependencies>
91
92 <build>
93 <plugins>
94 </plugins>
95 <pluginManagement>
96 <plugins>
97
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-deploy-plugin</artifactId>
101 <version>2.6</version>
102 <configuration>
103 <skip>false</skip>
104 </configuration>
105 </plugin>
106
107 <plugin>
108 <groupId>org.apache.maven.plugins</groupId>
109 <artifactId>maven-javadoc-plugin</artifactId>
110 <configuration>
111 <failOnError>false</failOnError>
112 </configuration>
113 <executions>
114 <execution>
115 <id>attach-javadocs</id>
116 <goals>
117 <goal>jar</goal>
118 </goals>
119 </execution>
120 </executions>
121 </plugin>
122
123
124 <plugin>
125 <groupId>org.apache.maven.plugins</groupId>
126 <artifactId>maven-source-plugin</artifactId>
127 <version>2.2.1</version>
128 <executions>
129 <execution>
130 <id>attach-sources</id>
131 <goals>
132 <goal>jar-no-fork</goal>
133 </goals>
134 </execution>
135 </executions>
136 </plugin>
137
138 <plugin>
139 <groupId>org.sonatype.plugins</groupId>
140 <artifactId>nexus-staging-maven-plugin</artifactId>
141 <version>1.6.7</version>
142 <extensions>true</extensions>
143 <configuration>
144 <nexusUrl>${nexusproxy}</nexusUrl>
145 <stagingProfileId>176c31dfe190a</stagingProfileId>
146 <serverId>ecomp-staging</serverId>
147 </configuration>
148 </plugin>
149
150 </plugins>
151 </pluginManagement>
152 </build>
153 <distributionManagement>
154 <repository>
155 <id>ecomp-releases</id>
156 <name>AAF Release Repository</name>
157 <url>${nexusproxy}${releaseNexusPath}</url>
158 </repository>
159 <snapshotRepository>
160 <id>ecomp-snapshots</id>
161 <name>AAF Snapshot Repository</name>
162 <url>${nexusproxy}${snapshotNexusPath}</url>
163 </snapshotRepository>
164 <site>
165 <id>ecomp-site</id>
166 <url>dav:${nexusproxy}${sitePath}</url>
167 </site>
168 </distributionManagement>
169<pluginRepositories>
170 <pluginRepository>
171 <id>onap-plugin-snapshots</id>
172 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
173 </pluginRepository>
174 </pluginRepositories>
175
176 <repositories>
177 <repository>
178 <id>central</id>
179 <name>Maven 2 repository 2</name>
180 <url>http://repo2.maven.org/maven2/</url>
181 </repository>
182 <repository>
183 <id>onap-jar-snapshots</id>
184 <url>https://nexus.onap.org/content/repositories/snapshots</url>
185 </repository>
186 <repository>
187 <id>spring-repo</id>
188 <name>Spring repo</name>
189 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
190 </repository>
191 <repository>
192 <id>repository.jboss.org-public</id>
193 <name>JBoss.org Maven repository</name>
194 <url>https://repository.jboss.org/nexus/content/groups/public</url>
195 </repository>
196 </repositories>
197
198</project>
199