blob: 59590bc3b09aef005f0430f39d9c6410eca6850a [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>
sg481n08e11042017-09-29 12:33:53 +000054 <maven.test.failure.ignore>true</maven.test.failure.ignore>
sg481nbd890c52017-08-28 12:11:35 -040055 <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>
sg481n0be0e062017-10-04 03:28:32 +000059 <sonar.skip>true</sonar.skip>
sg481n40cd3562017-09-01 13:12:31 -040060 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
61 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
62 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
63 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
sg481nd84864f2017-10-01 20:56:42 +000064 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
sg481n40cd3562017-09-01 13:12:31 -040065 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040066 <nexusproxy>https://nexus.onap.org</nexusproxy>
67 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
68 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
69 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000070 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040071 </properties>
72
73
74 <dependencies>
75 <dependency>
76 <groupId>org.onap.aaf.authz</groupId>
77 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040078 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040079 </dependency>
80 <dependency>
81 <groupId>org.onap.aaf.cadi</groupId>
82 <artifactId>cadi-core</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040083 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040084 </dependency>
85 <dependency>
86 <groupId>com.att.aft</groupId>
87 <artifactId>dme2</artifactId>
88 </dependency>
89 </dependencies>
90
91 <build>
92 <plugins>
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>
sg481nbd890c52017-08-28 12:11:35 -0400103
sg481na2ac6782017-09-18 16:35:50 -0400104 <plugin>
sg481nbd890c52017-08-28 12:11:35 -0400105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000107 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400108 <configuration>
109 <failOnError>false</failOnError>
110 </configuration>
111 <executions>
112 <execution>
113 <id>attach-javadocs</id>
114 <goals>
115 <goal>jar</goal>
116 </goals>
117 </execution>
118 </executions>
119 </plugin>
120
121
122 <plugin>
123 <groupId>org.apache.maven.plugins</groupId>
124 <artifactId>maven-source-plugin</artifactId>
125 <version>2.2.1</version>
126 <executions>
127 <execution>
128 <id>attach-sources</id>
129 <goals>
130 <goal>jar-no-fork</goal>
131 </goals>
132 </execution>
133 </executions>
134 </plugin>
135 <plugin>
136 <groupId>org.sonatype.plugins</groupId>
137 <artifactId>nexus-staging-maven-plugin</artifactId>
138 <version>1.6.7</version>
139 <extensions>true</extensions>
140 <configuration>
141 <nexusUrl>${nexusproxy}</nexusUrl>
142 <stagingProfileId>176c31dfe190a</stagingProfileId>
143 <serverId>ecomp-staging</serverId>
144 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400145 </plugin>
146 <plugin>
sg481n2783a8d2017-10-02 04:11:12 +0000147 <groupId>org.jacoco</groupId>
148 <artifactId>jacoco-maven-plugin</artifactId>
149 <version>0.7.7.201606060606</version>
150 <configuration>
151 <dumpOnExit>true</dumpOnExit>
152 <includes>
153 <include>org.onap.aaf.*</include>
154 </includes>
155 </configuration>
156 <executions>
157 <execution>
158 <id>pre-unit-test</id>
159 <goals>
160 <goal>prepare-agent</goal>
161 </goals>
162 <configuration>
163 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
164 <!-- <append>true</append> -->
165 </configuration>
166 </execution>
167 <execution>
168 <id>pre-integration-test</id>
169 <phase>pre-integration-test</phase>
170 <goals>
171 <goal>prepare-agent</goal>
172 </goals>
173 <configuration>
174 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
175 <!-- <append>true</append> -->
176 </configuration>
177 </execution>
178 <execution>
179 <goals>
180 <goal>merge</goal>
181 </goals>
182 <phase>post-integration-test</phase>
183 <configuration>
184 <fileSets>
185 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
186 <directory>${project.build.directory}/coverage-reports</directory>
187 <includes>
188 <include>*.exec</include>
189 </includes>
190 </fileSet>
191 </fileSets>
192 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
193 </configuration>
194 </execution>
195 </executions>
196 </plugin>
sg481nf33ea6d2017-10-01 17:28:44 +0000197
sg481nbd890c52017-08-28 12:11:35 -0400198 </plugins>
199
200 </build>
201<distributionManagement>
202 <repository>
203 <id>ecomp-releases</id>
204 <name>AAF Release Repository</name>
205 <url>${nexusproxy}${releaseNexusPath}</url>
206 </repository>
207 <snapshotRepository>
208 <id>ecomp-snapshots</id>
209 <name>AAF Snapshot Repository</name>
210 <url>${nexusproxy}${snapshotNexusPath}</url>
211 </snapshotRepository>
212 <site>
213 <id>ecomp-site</id>
214 <url>dav:${nexusproxy}${sitePath}</url>
215 </site>
216 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000217
sg481nbd890c52017-08-28 12:11:35 -0400218</project>