blob: 31f2c33fce03b653bb79be39f833590a1128e129 [file] [log] [blame]
Instrumental71037c32018-03-26 13:51:48 -07001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 * ============LICENSE_START====================================================
4 * org.onap.aaf
5 * ===========================================================================
6 * Copyright (c) 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-->
22<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
24 <modelVersion>4.0.0</modelVersion>
25 <parent>
Instrumental17ca7442018-03-29 16:54:19 -050026 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -070027 <artifactId>parent</artifactId>
28 <version>2.1.0-SNAPSHOT</version>
29 <relativePath>../pom.xml</relativePath>
30 </parent>
31
32 <artifactId>aaf-auth-fs</artifactId>
33 <name>AAF Auth File Server (http)</name>
34 <description>Independent FileServer Component via HTTP (not S) for Public Files (i.e. CRLs) for AAF Auth</description>
35
36 <properties>
Sai Gandham05c86472018-03-27 21:08:58 +000037 <skipTests>true</skipTests>
Instrumental17ca7442018-03-29 16:54:19 -050038
39
Instrumental71037c32018-03-26 13:51:48 -070040 <maven.test.failure.ignore>true</maven.test.failure.ignore>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000041 <!-- SONAR -->
42 <jacoco.version>0.7.7.201606060606</jacoco.version>
43 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
44 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
45 <!-- Default Sonar configuration -->
46 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
47 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
48 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
49 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
50 <nexusproxy>https://nexus.onap.org</nexusproxy>
51 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
52 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
53 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
54 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
55
Instrumental71037c32018-03-26 13:51:48 -070056 </properties>
57
58 <developers>
59 <developer>
60 <name>Jonathan Gathman</name>
61 <email>jonathan.gathman@att.com</email>
62 <organization>ATT</organization>
63 <roles>
64 <role>Architect</role>
65 <role>Lead Developer</role>
66 </roles>
67 </developer>
68 <developer>
69 <name>Gabe Maurer</name>
70 <email>gabe.maurer@att.com</email>
71 <organization>ATT</organization>
72 <roles>
73 <role>Developer</role>
74 </roles>
75 </developer>
76 <developer>
77 <name>Ian Howell</name>
78 <email>ian.howell@att.com</email>
79 <organization>ATT</organization>
80 <roles>
81 <role>Developer</role>
82 </roles>
83 </developer>
Sai Gandhame01703c2018-03-26 22:57:09 +000084 <developer>
85 <name>Sai Gandham</name>
86 <email>sai.gandham@att.com</email>
87 <organization>ATT</organization>
88 <roles>
89 <role>Developer</role>
90 </roles>
91 </developer>
Instrumental71037c32018-03-26 13:51:48 -070092 </developers>
93
94 <dependencies>
95 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050096 <groupId>org.onap.aaf.authz.auth</groupId>
Instrumental71037c32018-03-26 13:51:48 -070097 <artifactId>aaf-auth-core</artifactId>
98 </dependency>
99
100 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -0500101 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumental71037c32018-03-26 13:51:48 -0700102 <artifactId>aaf-cadi-core</artifactId>
103 </dependency>
104 </dependencies>
105
106 <build>
107 <plugins>
108 <plugin>
109 <groupId>org.apache.maven.plugins</groupId>
110 <artifactId>maven-deploy-plugin</artifactId>
111 <configuration>
112 <skip>true</skip>
113 </configuration>
114 </plugin>
115 <plugin>
116 <groupId>org.codehaus.mojo</groupId>
117 <artifactId>appassembler-maven-plugin</artifactId>
118 <configuration>
119 <programs>
120 <program>
121 <mainClass>org.onap.aaf.auth.fs.AAF_FS</mainClass>
122 <name>fs</name>
123 <commandLineArguments>
124 <commandLineArgument>cadi_prop_files=${project.conf_dir}/org.osaaf.fs.props</commandLineArgument>
125 </commandLineArguments>
126 </program>
127 </programs>
128 </configuration>
129 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000130 <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>
140 </plugin>
141 <plugin>
142 <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>
Instrumental71037c32018-03-26 13:51:48 -0700192 </plugins>
193 <pluginManagement>
194 <plugins />
195 </pluginManagement>
196 </build>
197
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000198 <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>
Instrumental71037c32018-03-26 13:51:48 -0700214</project>