blob: bef84424e9d8a18bfe384c793f160b336219b8eb [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-fs</artifactId>
35 <name>Authz File Server</name>
36 <description>Independent FileServer via HTTP (not S) for Public Files (i.e. CRLs)</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>9</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-core</artifactId>
69 </dependency>
70 <dependency>
71 <groupId>org.onap.aaf.cadi</groupId>
72 <artifactId>cadi-core</artifactId>
73 </dependency>
74 <dependency>
75 <groupId>com.att.aft</groupId>
76 <artifactId>dme2</artifactId>
77 </dependency>
78 </dependencies>
79
80 <build>
81 <plugins>
82 <plugin>
83 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-jar-plugin</artifactId>
85 <configuration>
86 <includes>
87 <include>**/*.class</include>
88 </includes>
89 </configuration>
90 <version>2.3.1</version>
91 </plugin>
92
93 <plugin>
94 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-deploy-plugin</artifactId>
96 <configuration>
97 <skip>true</skip>
98 </configuration>
99 </plugin>
100
101
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-javadoc-plugin</artifactId>
105 <configuration>
106 <failOnError>false</failOnError>
107 </configuration>
108 <executions>
109 <execution>
110 <id>attach-javadocs</id>
111 <goals>
112 <goal>jar</goal>
113 </goals>
114 </execution>
115 </executions>
116 </plugin>
117
118
119 <plugin>
120 <groupId>org.apache.maven.plugins</groupId>
121 <artifactId>maven-source-plugin</artifactId>
122 <version>2.2.1</version>
123 <executions>
124 <execution>
125 <id>attach-sources</id>
126 <goals>
127 <goal>jar-no-fork</goal>
128 </goals>
129 </execution>
130 </executions>
131 </plugin>
132 <plugin>
133 <groupId>org.sonatype.plugins</groupId>
134 <artifactId>nexus-staging-maven-plugin</artifactId>
135 <version>1.6.7</version>
136 <extensions>true</extensions>
137 <configuration>
138 <nexusUrl>${nexusproxy}</nexusUrl>
139 <stagingProfileId>176c31dfe190a</stagingProfileId>
140 <serverId>ecomp-staging</serverId>
141 </configuration>
142 </plugin>
143 </plugins>
144
145 </build>
146<distributionManagement>
147 <repository>
148 <id>ecomp-releases</id>
149 <name>AAF Release Repository</name>
150 <url>${nexusproxy}${releaseNexusPath}</url>
151 </repository>
152 <snapshotRepository>
153 <id>ecomp-snapshots</id>
154 <name>AAF Snapshot Repository</name>
155 <url>${nexusproxy}${snapshotNexusPath}</url>
156 </snapshotRepository>
157 <site>
158 <id>ecomp-site</id>
159 <url>dav:${nexusproxy}${sitePath}</url>
160 </site>
161 </distributionManagement>
162<pluginRepositories>
163 <pluginRepository>
164 <id>onap-plugin-snapshots</id>
165 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
166 </pluginRepository>
167 </pluginRepositories>
168
169 <repositories>
170 <repository>
171 <id>central</id>
172 <name>Maven 2 repository 2</name>
173 <url>http://repo2.maven.org/maven2/</url>
174 </repository>
175 <repository>
176 <id>onap-jar-snapshots</id>
177 <url>https://nexus.onap.org/content/repositories/snapshots</url>
178 </repository>
179 <repository>
180 <id>spring-repo</id>
181 <name>Spring repo</name>
182 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
183 </repository>
184 <repository>
185 <id>repository.jboss.org-public</id>
186 <name>JBoss.org Maven repository</name>
187 <url>https://repository.jboss.org/nexus/content/groups/public</url>
188 </repository>
189 </repositories>
190</project>