blob: fe789cb5fbc14717faa1ca02668d4b87e82a59e6 [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>
sg481n72aacef2017-10-05 16:13:21 +000038
sg481nbd890c52017-08-28 12:11:35 -040039 <developers>
40 <developer>
41 <name>Jonathan Gathman</name>
42 <email></email>
43 <organization>ATT</organization>
44 <organizationUrl></organizationUrl>
45 </developer>
46 </developers>
47
48 <properties>
sg481n08e11042017-09-29 12:33:53 +000049 <maven.test.failure.ignore>true</maven.test.failure.ignore>
sg481nbd890c52017-08-28 12:11:35 -040050 <project.swmVersion>9</project.swmVersion>
sg481na2ac6782017-09-18 16:35:50 -040051 <project.cadiVersion>1.0.0-SNAPSHOT</project.cadiVersion>
52 <project.innoVersion>1.0.0-SNAPSHOT</project.innoVersion>
sg481n40cd3562017-09-01 13:12:31 -040053 <sonar.language>java</sonar.language>
sg481n0be0e062017-10-04 03:28:32 +000054 <sonar.skip>true</sonar.skip>
sg481n40cd3562017-09-01 13:12:31 -040055 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
56 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
57 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
58 <sonar.jacoco.itReportPath>${project.build.directory}/coverage-reports/jacoco-it.exec</sonar.jacoco.itReportPath>
sg481nd84864f2017-10-01 20:56:42 +000059 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
sg481n40cd3562017-09-01 13:12:31 -040060 <sonar.projectVersion>${project.version}</sonar.projectVersion>
sg481nbd890c52017-08-28 12:11:35 -040061 <nexusproxy>https://nexus.onap.org</nexusproxy>
62 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
63 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
64 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
sg481na9d21082017-09-23 14:26:06 +000065 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040066 </properties>
67
68
69 <dependencies>
70 <dependency>
71 <groupId>org.onap.aaf.authz</groupId>
72 <artifactId>authz-core</artifactId>
sg481n5c30b7f2017-09-17 11:37:00 -040073 <version>${project.version}</version>
sg481nbd890c52017-08-28 12:11:35 -040074 </dependency>
75 <dependency>
76 <groupId>org.onap.aaf.cadi</groupId>
77 <artifactId>cadi-core</artifactId>
sg481na2ac6782017-09-18 16:35:50 -040078 <version>${project.cadiVersion}</version>
sg481nbd890c52017-08-28 12:11:35 -040079 </dependency>
80 <dependency>
81 <groupId>com.att.aft</groupId>
82 <artifactId>dme2</artifactId>
83 </dependency>
84 </dependencies>
85
86 <build>
87 <plugins>
88 <plugin>
89 <groupId>org.apache.maven.plugins</groupId>
90 <artifactId>maven-jar-plugin</artifactId>
91 <configuration>
92 <includes>
93 <include>**/*.class</include>
94 </includes>
95 </configuration>
96 <version>2.3.1</version>
97 </plugin>
sg481nbd890c52017-08-28 12:11:35 -040098
sg481na2ac6782017-09-18 16:35:50 -040099 <plugin>
sg481nbd890c52017-08-28 12:11:35 -0400100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-javadoc-plugin</artifactId>
sg481na9d21082017-09-23 14:26:06 +0000102 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400103 <configuration>
104 <failOnError>false</failOnError>
105 </configuration>
106 <executions>
107 <execution>
108 <id>attach-javadocs</id>
109 <goals>
110 <goal>jar</goal>
111 </goals>
112 </execution>
113 </executions>
114 </plugin>
115
116
117 <plugin>
118 <groupId>org.apache.maven.plugins</groupId>
119 <artifactId>maven-source-plugin</artifactId>
120 <version>2.2.1</version>
121 <executions>
122 <execution>
123 <id>attach-sources</id>
124 <goals>
125 <goal>jar-no-fork</goal>
126 </goals>
127 </execution>
128 </executions>
129 </plugin>
130 <plugin>
131 <groupId>org.sonatype.plugins</groupId>
132 <artifactId>nexus-staging-maven-plugin</artifactId>
133 <version>1.6.7</version>
134 <extensions>true</extensions>
135 <configuration>
136 <nexusUrl>${nexusproxy}</nexusUrl>
137 <stagingProfileId>176c31dfe190a</stagingProfileId>
138 <serverId>ecomp-staging</serverId>
139 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400140 </plugin>
141 <plugin>
sg481n2783a8d2017-10-02 04:11:12 +0000142 <groupId>org.jacoco</groupId>
143 <artifactId>jacoco-maven-plugin</artifactId>
144 <version>0.7.7.201606060606</version>
145 <configuration>
146 <dumpOnExit>true</dumpOnExit>
147 <includes>
148 <include>org.onap.aaf.*</include>
149 </includes>
150 </configuration>
151 <executions>
152 <execution>
153 <id>pre-unit-test</id>
154 <goals>
155 <goal>prepare-agent</goal>
156 </goals>
157 <configuration>
158 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
159 <!-- <append>true</append> -->
160 </configuration>
161 </execution>
162 <execution>
163 <id>pre-integration-test</id>
164 <phase>pre-integration-test</phase>
165 <goals>
166 <goal>prepare-agent</goal>
167 </goals>
168 <configuration>
169 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
170 <!-- <append>true</append> -->
171 </configuration>
172 </execution>
173 <execution>
174 <goals>
175 <goal>merge</goal>
176 </goals>
177 <phase>post-integration-test</phase>
178 <configuration>
179 <fileSets>
180 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
181 <directory>${project.build.directory}/coverage-reports</directory>
182 <includes>
183 <include>*.exec</include>
184 </includes>
185 </fileSet>
186 </fileSets>
187 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
188 </configuration>
189 </execution>
190 </executions>
191 </plugin>
sg481nf33ea6d2017-10-01 17:28:44 +0000192
sg481nbd890c52017-08-28 12:11:35 -0400193 </plugins>
194
195 </build>
196<distributionManagement>
197 <repository>
198 <id>ecomp-releases</id>
199 <name>AAF Release Repository</name>
200 <url>${nexusproxy}${releaseNexusPath}</url>
201 </repository>
202 <snapshotRepository>
203 <id>ecomp-snapshots</id>
204 <name>AAF Snapshot Repository</name>
205 <url>${nexusproxy}${snapshotNexusPath}</url>
206 </snapshotRepository>
207 <site>
208 <id>ecomp-site</id>
209 <url>dav:${nexusproxy}${sitePath}</url>
210 </site>
211 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000212
sg481nbd890c52017-08-28 12:11:35 -0400213</project>