blob: 93b55e97de7ec0a5e65fad5898a69de5e6f29747 [file] [log] [blame]
Instrumental71037c32018-03-26 13:51:48 -07001<?xml version="1.0" encoding="UTF-8"?>
gabe.maurer2e233282018-04-03 11:18:38 -05002<!-- * ============LICENSE_START====================================================
3 * org.onap.aaf * ===========================================================================
4 * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved. * ===========================================================================
5 * Licensed under the Apache License, Version 2.0 (the "License"); * you may
6 not use this file except in compliance with the License. * You may obtain
7 a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 *
8 * Unless required by applicable law or agreed to in writing, software * distributed
9 under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES
10 OR CONDITIONS OF ANY KIND, either express or implied. * See the License for
11 the specific language governing permissions and * limitations under the License.
12 * ============LICENSE_END====================================================
13 * -->
Instrumental71037c32018-03-26 13:51:48 -070014<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
15 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
16 <modelVersion>4.0.0</modelVersion>
17 <parent>
Sai Gandham83fc0252018-04-09 16:28:48 +000018 <groupId>org.onap.aaf.authz</groupId>
19 <artifactId>authparent</artifactId>
Instrumentalb7440252018-06-14 15:05:33 -050020 <version>2.1.2-SNAPSHOT</version>
Instrumental71037c32018-03-26 13:51:48 -070021 <relativePath>../pom.xml</relativePath>
22 </parent>
23
24 <artifactId>aaf-auth-fs</artifactId>
25 <name>AAF Auth File Server (http)</name>
26 <description>Independent FileServer Component via HTTP (not S) for Public Files (i.e. CRLs) for AAF Auth</description>
27
28 <properties>
29 <maven.test.failure.ignore>true</maven.test.failure.ignore>
gabe.maurer2e233282018-04-03 11:18:38 -050030 <!-- SONAR -->
Sai Gandhamf44b9272018-04-12 16:42:07 +000031 <!-- <sonar.skip>true</sonar.skip> -->
gabe.maurer2e233282018-04-03 11:18:38 -050032 <jacoco.version>0.7.7.201606060606</jacoco.version>
33 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
34 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
35 <!-- Default Sonar configuration -->
Sai Gandham61f8fdf2018-04-03 12:07:07 -050036 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
37 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
gabe.maurer2e233282018-04-03 11:18:38 -050038 <!-- Note: This list should match jacoco-maven-plugin's exclusion list
39 below -->
40 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000041 <nexusproxy>https://nexus.onap.org</nexusproxy>
42 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
43 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
44 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Sai Gandham30dca6e2018-04-09 21:22:48 +000045 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
gabe.maurer2e233282018-04-03 11:18:38 -050046
Instrumental71037c32018-03-26 13:51:48 -070047 </properties>
48
49 <developers>
50 <developer>
51 <name>Jonathan Gathman</name>
52 <email>jonathan.gathman@att.com</email>
53 <organization>ATT</organization>
54 <roles>
55 <role>Architect</role>
56 <role>Lead Developer</role>
57 </roles>
58 </developer>
59 <developer>
60 <name>Gabe Maurer</name>
61 <email>gabe.maurer@att.com</email>
62 <organization>ATT</organization>
63 <roles>
64 <role>Developer</role>
65 </roles>
66 </developer>
67 <developer>
68 <name>Ian Howell</name>
69 <email>ian.howell@att.com</email>
70 <organization>ATT</organization>
71 <roles>
72 <role>Developer</role>
73 </roles>
74 </developer>
Sai Gandhame01703c2018-03-26 22:57:09 +000075 <developer>
76 <name>Sai Gandham</name>
77 <email>sai.gandham@att.com</email>
78 <organization>ATT</organization>
79 <roles>
80 <role>Developer</role>
81 </roles>
82 </developer>
Instrumental71037c32018-03-26 13:51:48 -070083 </developers>
84
85 <dependencies>
86 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000087 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070088 <artifactId>aaf-auth-core</artifactId>
89 </dependency>
90
91 <dependency>
Sai Gandham83fc0252018-04-09 16:28:48 +000092 <groupId>org.onap.aaf.authz</groupId>
Instrumental71037c32018-03-26 13:51:48 -070093 <artifactId>aaf-cadi-core</artifactId>
94 </dependency>
95 </dependencies>
96
97 <build>
98 <plugins>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-deploy-plugin</artifactId>
102 <configuration>
Sai Gandhamd97041c2018-04-03 01:57:59 -0500103 <skip>false</skip>
Instrumental71037c32018-03-26 13:51:48 -0700104 </configuration>
105 </plugin>
106 <plugin>
107 <groupId>org.codehaus.mojo</groupId>
108 <artifactId>appassembler-maven-plugin</artifactId>
109 <configuration>
110 <programs>
111 <program>
112 <mainClass>org.onap.aaf.auth.fs.AAF_FS</mainClass>
113 <name>fs</name>
114 <commandLineArguments>
Instrumental4ad47632018-07-13 15:49:26 -0500115 <commandLineArgument>cadi_prop_files=${project.ext_root_dir}/etc/org.osaaf.aaf.fs.props</commandLineArgument>
Instrumental924b18d2018-04-05 20:17:18 -0500116 <commandLineArgument>cadi_log_dir=${project.ext_root_dir}/logs/fs</commandLineArgument>
Instrumental4ad47632018-07-13 15:49:26 -0500117 <commandLineArgument>cadi_etc_dir=${project.ext_root_dir}/etc</commandLineArgument>
Instrumental71037c32018-03-26 13:51:48 -0700118 </commandLineArguments>
119 </program>
120 </programs>
121 </configuration>
122 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000123 <plugin>
124 <groupId>org.sonatype.plugins</groupId>
125 <artifactId>nexus-staging-maven-plugin</artifactId>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000126 <extensions>true</extensions>
127 <configuration>
128 <nexusUrl>${nexusproxy}</nexusUrl>
129 <stagingProfileId>176c31dfe190a</stagingProfileId>
130 <serverId>ecomp-staging</serverId>
131 </configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500132 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000133 <plugin>
134 <groupId>org.jacoco</groupId>
135 <artifactId>jacoco-maven-plugin</artifactId>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000136 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500137 <excludes>
138 <exclude>**/gen/**</exclude>
139 <exclude>**/generated-sources/**</exclude>
140 <exclude>**/yang-gen/**</exclude>
141 <exclude>**/pax/**</exclude>
142 </excludes>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000143 </configuration>
144 <executions>
gabe.maurer2e233282018-04-03 11:18:38 -0500145
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000146 <execution>
147 <id>pre-unit-test</id>
148 <goals>
149 <goal>prepare-agent</goal>
150 </goals>
151 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500152 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
153 <propertyName>surefireArgLine</propertyName>
154 </configuration>
155 </execution>
156
157
158 <execution>
159 <id>post-unit-test</id>
160 <phase>test</phase>
161 <goals>
162 <goal>report</goal>
163 </goals>
164 <configuration>
165 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
166 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000167 </configuration>
168 </execution>
169 <execution>
170 <id>pre-integration-test</id>
171 <phase>pre-integration-test</phase>
172 <goals>
173 <goal>prepare-agent</goal>
174 </goals>
175 <configuration>
gabe.maurer2e233282018-04-03 11:18:38 -0500176 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
177 <propertyName>failsafeArgLine</propertyName>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000178 </configuration>
179 </execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500180
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000181 <execution>
gabe.maurer2e233282018-04-03 11:18:38 -0500182 <id>post-integration-test</id>
183 <phase>post-integration-test</phase>
184 <goals>
185 <goal>report</goal>
186 </goals>
187 <configuration>
188 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
189 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
190 </configuration>
191 </execution>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000192 </executions>
193 </plugin>
Instrumental71037c32018-03-26 13:51:48 -0700194 </plugins>
195 <pluginManagement>
196 <plugins />
197 </pluginManagement>
198 </build>
199
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000200 <distributionManagement>
201 <repository>
202 <id>ecomp-releases</id>
203 <name>AAF Release Repository</name>
204 <url>${nexusproxy}${releaseNexusPath}</url>
205 </repository>
206 <snapshotRepository>
207 <id>ecomp-snapshots</id>
208 <name>AAF Snapshot Repository</name>
209 <url>${nexusproxy}${snapshotNexusPath}</url>
210 </snapshotRepository>
211 <site>
212 <id>ecomp-site</id>
213 <url>dav:${nexusproxy}${sitePath}</url>
214 </site>
215 </distributionManagement>
Instrumental71037c32018-03-26 13:51:48 -0700216</project>