blob: 14d0997b282bd5c4a36e5524d52a9a7cc4de26b9 [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>
sg481na9d21082017-09-23 14:26:06 +000069 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
sg481nbd890c52017-08-28 12:11:35 -040070 </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>
sg481na9d21082017-09-23 14:26:06 +0000106 <version>2.10.4</version>
sg481nbd890c52017-08-28 12:11:35 -0400107 <configuration>
108 <failOnError>false</failOnError>
109 </configuration>
110 <executions>
111 <execution>
112 <id>attach-javadocs</id>
113 <goals>
114 <goal>jar</goal>
115 </goals>
116 </execution>
117 </executions>
118 </plugin>
119
120
121 <plugin>
122 <groupId>org.apache.maven.plugins</groupId>
123 <artifactId>maven-source-plugin</artifactId>
124 <version>2.2.1</version>
125 <executions>
126 <execution>
127 <id>attach-sources</id>
128 <goals>
129 <goal>jar-no-fork</goal>
130 </goals>
131 </execution>
132 </executions>
133 </plugin>
134 <plugin>
135 <groupId>org.sonatype.plugins</groupId>
136 <artifactId>nexus-staging-maven-plugin</artifactId>
137 <version>1.6.7</version>
138 <extensions>true</extensions>
139 <configuration>
140 <nexusUrl>${nexusproxy}</nexusUrl>
141 <stagingProfileId>176c31dfe190a</stagingProfileId>
142 <serverId>ecomp-staging</serverId>
143 </configuration>
sg481n40cd3562017-09-01 13:12:31 -0400144 </plugin>
145 <plugin>
146 <groupId>org.jacoco</groupId>
147 <artifactId>jacoco-maven-plugin</artifactId>
148 <version>0.7.7.201606060606</version>
149 <configuration>
150 <dumpOnExit>true</dumpOnExit>
151 <includes>
152 <include>org.onap.aaf.*</include>
153 </includes>
154 </configuration>
155 <executions>
156 <execution>
157 <id>pre-unit-test</id>
158 <goals>
159 <goal>prepare-agent</goal>
160 </goals>
161 <configuration>
162 <destFile>${project.build.directory}/coverage-reports/jacoco.exec</destFile>
163 <!-- <append>true</append> -->
164 </configuration>
165 </execution>
166 <execution>
167 <id>pre-integration-test</id>
168 <phase>pre-integration-test</phase>
169 <goals>
170 <goal>prepare-agent</goal>
171 </goals>
172 <configuration>
173 <destFile>${project.build.directory}/coverage-reports/jacoco-it.exec</destFile>
174 <!-- <append>true</append> -->
175 </configuration>
176 </execution>
177 <execution>
178 <goals>
179 <goal>merge</goal>
180 </goals>
181 <phase>post-integration-test</phase>
182 <configuration>
183 <fileSets>
184 <fileSet implementation="org.apache.maven.shared.model.fileset.FileSet">
185 <directory>${project.build.directory}/coverage-reports</directory>
186 <includes>
187 <include>*.exec</include>
188 </includes>
189 </fileSet>
190 </fileSets>
191 <destFile>${project.build.directory}/jacoco-dev.exec</destFile>
192 </configuration>
193 </execution>
194 </executions>
sg481nbd890c52017-08-28 12:11:35 -0400195 </plugin>
196 </plugins>
197
198 </build>
199<distributionManagement>
200 <repository>
201 <id>ecomp-releases</id>
202 <name>AAF Release Repository</name>
203 <url>${nexusproxy}${releaseNexusPath}</url>
204 </repository>
205 <snapshotRepository>
206 <id>ecomp-snapshots</id>
207 <name>AAF Snapshot Repository</name>
208 <url>${nexusproxy}${snapshotNexusPath}</url>
209 </snapshotRepository>
210 <site>
211 <id>ecomp-site</id>
212 <url>dav:${nexusproxy}${sitePath}</url>
213 </site>
214 </distributionManagement>
sg481na9d21082017-09-23 14:26:06 +0000215
sg481nbd890c52017-08-28 12:11:35 -0400216</project>