blob: e454511864770b4ac32dd19ea5636554f9cecb5e [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>
sg481n40cd3562017-09-01 13:12:31 -040057 <sonar.language>java</sonar.language>
58 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
59 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
60 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
61 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
62 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
63 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040064 <nexusproxy>https://nexus.onap.org</nexusproxy>
65 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
66 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
67 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
68 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
69 </properties>
70
71
72 <dependencies>
73 <dependency>
74 <groupId>org.onap.aaf.authz</groupId>
75 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040076 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040077 </dependency>
78 <dependency>
79 <groupId>org.onap.aaf.cadi</groupId>
80 <artifactId>cadi-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040081 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040082 </dependency>
83 <dependency>
84 <groupId>com.att.aft</groupId>
85 <artifactId>dme2</artifactId>
86 </dependency>
87 </dependencies>
88
89 <build>
90 <plugins>
91 <plugin>
92 <groupId>org.apache.maven.plugins</groupId>
93 <artifactId>maven-jar-plugin</artifactId>
94 <configuration>
95 <includes>
96 <include>**/*.class</include>
97 </includes>
98 </configuration>
99 <version>2.3.1</version>
100 </plugin>
101
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-deploy-plugin</artifactId>
105 <configuration>
106 <skip>true</skip>
107 </configuration>
108 </plugin>
109
110
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-javadoc-plugin</artifactId>
114 <configuration>
115 <failOnError>false</failOnError>
116 </configuration>
117 <executions>
118 <execution>
119 <id>attach-javadocs</id>
120 <goals>
121 <goal>jar</goal>
122 </goals>
123 </execution>
124 </executions>
125 </plugin>
126
127
128 <plugin>
129 <groupId>org.apache.maven.plugins</groupId>
130 <artifactId>maven-source-plugin</artifactId>
131 <version>2.2.1</version>
132 <executions>
133 <execution>
134 <id>attach-sources</id>
135 <goals>
136 <goal>jar-no-fork</goal>
137 </goals>
138 </execution>
139 </executions>
140 </plugin>
141 <plugin>
142 <groupId>org.sonatype.plugins</groupId>
143 <artifactId>nexus-staging-maven-plugin</artifactId>
144 <version>1.6.7</version>
145 <extensions>true</extensions>
146 <configuration>
147 <nexusUrl>${nexusproxy}</nexusUrl>
148 <stagingProfileId>176c31dfe190a</stagingProfileId>
149 <serverId>ecomp-staging</serverId>
150 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400151 </plugin>
152 <plugin>
153 <groupId>org.jacoco</groupId>
154 <artifactId>jacoco-maven-plugin</artifactId>
155 <version>0.7.7.201606060606</version>
156 <configuration>
157 <dumpOnExit>true</dumpOnExit>
158 <includes>
159 <include>org.onap.aaf.*</include>
160 </includes>
161 </configuration>
162 <executions>
163 <execution>
164 <id>pre-unit-test</id>
165 <goals>
166 <goal>prepare-agent</goal>
167 </goals>
168 <configuration>
169 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
170 <!-- <append>true</append> -->
171 </configuration>
172 </execution>
173 <execution>
174 <id>pre-integration-test</id>
175 <phase>pre-integration-test</phase>
176 <goals>
177 <goal>prepare-agent</goal>
178 </goals>
179 <configuration>
180 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
181 <!-- <append>true</append> -->
182 </configuration>
183 </execution>
184 <execution>
185 <goals>
186 <goal>merge</goal>
187 </goals>
188 <phase>post-integration-test</phase>
189 <configuration>
190 <fileSets>
191 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
192 <directory>${project.build.directory}/coverage-reports</directory>
193 <includes>
194 <include>*.exec</include>
195 </includes>
196 </fileSet>
197 </fileSets>
198 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
199 </configuration>
200 </execution>
201 </executions>
sg481nbd890c52017-08-28 12:11:35 -0400202 </plugin>
203 </plugins>
204
205 </build>
206<distributionManagement>
207 <repository>
208 <id>ecomp-releases</id>
209 <name>AAF Release Repository</name>
210 <url>${nexusproxy}${releaseNexusPath}</url>
211 </repository>
212 <snapshotRepository>
213 <id>ecomp-snapshots</id>
214 <name>AAF Snapshot Repository</name>
215 <url>${nexusproxy}${snapshotNexusPath}</url>
216 </snapshotRepository>
217 <site>
218 <id>ecomp-site</id>
219 <url>dav:${nexusproxy}${sitePath}</url>
220 </site>
221 </distributionManagement>
222<pluginRepositories>
223 <pluginRepository>
224 <id>onap-plugin-snapshots</id>
225 <url>https://nexus.onap.org/content/repositories/snapshots/</url>
226 </pluginRepository>
227 </pluginRepositories>
228
229 <repositories>
230 <repository>
231 <id>central</id>
232 <name>Maven 2 repository 2</name>
233 <url>http://repo2.maven.org/maven2/</url>
234 </repository>
235 <repository>
236 <id>onap-jar-snapshots</id>
237 <url>https://nexus.onap.org/content/repositories/snapshots</url>
238 </repository>
239 <repository>
240 <id>spring-repo</id>
241 <name>Spring repo</name>
242 <url>https://artifacts.alfresco.com/nexus/content/repositories/public/</url>
243 </repository>
244 <repository>
245 <id>repository.jboss.org-public</id>
246 <name>JBoss.org Maven repository</name>
247 <url>https://repository.jboss.org/nexus/content/groups/public</url>
248 </repository>
249 </repositories>
250</project>