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