blob: 026b509843510d5f51e123819416844fd3dfbe88 [file] [log] [blame]
Instrumentala20accc2018-03-26 13:49:56 -07001<!--
2 * ============LICENSE_START====================================================
3 * org.onap.aaf
4 * ===========================================================================
5 * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6 * ===========================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END====================================================
19 *
20-->
21<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
IanHowell3901cf82018-04-03 11:24:27 -050022 <parent>
23 <groupId>org.onap.aaf.authz.cadi</groupId>
24 <artifactId>parent</artifactId>
Sai Gandhamc83c6332018-04-05 16:08:24 -050025 <version>2.1.0-SNAPSHOT</version>
IanHowell3901cf82018-04-03 11:24:27 -050026 <relativePath>..</relativePath>
27 </parent>
Instrumentala20accc2018-03-26 13:49:56 -070028
29 <artifactId>aaf-cadi-client</artifactId>
30 <name>AAF CADI Client</name>
31 <packaging>jar</packaging>
32 <modelVersion>4.0.0</modelVersion>
33
Sai Gandhamc434f3c2018-03-27 16:29:24 +000034 <properties>
Sai Gandhamb54ee102018-04-07 23:34:46 -050035 <scijava.jvm.version>1.8</scijava.jvm.version>
IanHowell3901cf82018-04-03 11:24:27 -050036 <!-- SONAR -->
Sai Gandhama88f56f2018-04-03 17:09:33 -050037 <sonar.skip>true</sonar.skip>
IanHowell3901cf82018-04-03 11:24:27 -050038 <jacoco.version>0.7.7.201606060606</jacoco.version>
39 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
40 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
41 <!-- Default Sonar configuration -->
Sai Gandham61f8fdf2018-04-03 12:07:07 -050042 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
43 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
IanHowell3901cf82018-04-03 11:24:27 -050044 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
45 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000046 <nexusproxy>https://nexus.onap.org</nexusproxy>
47 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
48 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
49 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Sai Gandham103d3ca2018-04-06 14:00:44 -050050 <sitePath>/content/sites/site/org/onap/aaf/authz/cadi/${project.artifactId}/${project.version}</sitePath>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000051 </properties>
IanHowell3901cf82018-04-03 11:24:27 -050052
Instrumentala20accc2018-03-26 13:49:56 -070053 <developers>
54 <developer>
55 <name>Jonathan Gathman</name>
56 <email>jonathan.gathman@att.com</email>
57 <organization>ATT</organization>
58 <roles>
59 <role>Architect</role>
60 <role>Lead Developer</role>
61 </roles>
62 </developer>
63 <developer>
64 <name>Gabe Maurer</name>
65 <email>gabe.maurer@att.com</email>
66 <organization>ATT</organization>
67 <roles>
68 <role>Developer</role>
69 </roles>
70 </developer>
71 <developer>
72 <name>Ian Howell</name>
73 <email>ian.howell@att.com</email>
74 <organization>ATT</organization>
75 <roles>
76 <role>Developer</role>
77 </roles>
78 </developer>
Sai Gandhame01703c2018-03-26 22:57:09 +000079 <developer>
80 <name>Sai Gandham</name>
81 <email>sai.gandham@att.com</email>
82 <organization>ATT</organization>
83 <roles>
84 <role>Developer</role>
85 </roles>
86 </developer>
Instrumentala20accc2018-03-26 13:49:56 -070087 </developers>
88
89 <dependencies>
90 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050091 <groupId>org.onap.aaf.authz.misc</groupId>
Instrumentala20accc2018-03-26 13:49:56 -070092 <artifactId>aaf-misc-rosetta</artifactId>
IanHowell3901cf82018-04-03 11:24:27 -050093
Instrumentala20accc2018-03-26 13:49:56 -070094 </dependency>
95 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050096 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumentala20accc2018-03-26 13:49:56 -070097 <artifactId>aaf-cadi-core</artifactId>
98 </dependency>
99
100 <dependency>
101 <groupId>javax.servlet</groupId>
Instrumental924b18d2018-04-05 20:17:18 -0500102 <artifactId>javax.servlet-api</artifactId>
Instrumentala20accc2018-03-26 13:49:56 -0700103 <scope>compile</scope>
104 </dependency>
105 </dependencies>
106
107 <build>
108 <plugins>
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-jarsigner-plugin</artifactId>
Sai Gandham6034c492018-03-27 17:29:56 +0000112 <version>1.4</version>
Instrumentala20accc2018-03-26 13:49:56 -0700113 </plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500114 <plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000115 <groupId>org.sonatype.plugins</groupId>
116 <artifactId>nexus-staging-maven-plugin</artifactId>
117 <version>1.6.7</version>
118 <extensions>true</extensions>
119 <configuration>
120 <nexusUrl>${nexusproxy}</nexusUrl>
121 <stagingProfileId>176c31dfe190a</stagingProfileId>
122 <serverId>ecomp-staging</serverId>
123 </configuration>
IanHowell3901cf82018-04-03 11:24:27 -0500124 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000125 <plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500126 <groupId>org.jacoco</groupId>
127 <artifactId>jacoco-maven-plugin</artifactId>
128 <version>${jacoco.version}</version>
129 <configuration>
130 <excludes>
131 <exclude>**/gen/**</exclude>
132 <exclude>**/generated-sources/**</exclude>
133 <exclude>**/yang-gen/**</exclude>
134 <exclude>**/pax/**</exclude>
135 </excludes>
136 </configuration>
137 <executions>
138 <execution>
139 <id>pre-unit-test</id>
140 <goals>
141 <goal>prepare-agent</goal>
142 </goals>
143 <configuration>
144 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
145 <propertyName>surefireArgLine</propertyName>
146 </configuration>
147 </execution>
148 <execution>
149 <id>post-unit-test</id>
150 <phase>test</phase>
151 <goals>
152 <goal>report</goal>
153 </goals>
154 <configuration>
155 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
156 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
157 </configuration>
158 </execution>
159 <execution>
160 <id>pre-integration-test</id>
161 <phase>pre-integration-test</phase>
162 <goals>
163 <goal>prepare-agent</goal>
164 </goals>
165 <configuration>
166 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
167 <propertyName>failsafeArgLine</propertyName>
168 </configuration>
169 </execution>
170 <execution>
171 <id>post-integration-test</id>
172 <phase>post-integration-test</phase>
173 <goals>
174 <goal>report</goal>
175 </goals>
176 <configuration>
177 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
178 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
179 </configuration>
180 </execution>
181 </executions>
182 </plugin>
Instrumentala20accc2018-03-26 13:49:56 -0700183 </plugins>
184 </build>
IanHowell3901cf82018-04-03 11:24:27 -0500185
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000186 <distributionManagement>
187 <repository>
188 <id>ecomp-releases</id>
189 <name>AAF Release Repository</name>
190 <url>${nexusproxy}${releaseNexusPath}</url>
191 </repository>
192 <snapshotRepository>
193 <id>ecomp-snapshots</id>
194 <name>AAF Snapshot Repository</name>
195 <url>${nexusproxy}${snapshotNexusPath}</url>
196 </snapshotRepository>
197 <site>
198 <id>ecomp-site</id>
199 <url>dav:${nexusproxy}${sitePath}</url>
200 </site>
201 </distributionManagement>
Instrumentala20accc2018-03-26 13:49:56 -0700202</project>