blob: 75d9c49922c2fd68f58a0bd2e7fd674e43a582b6 [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>
IanHowell3901cf82018-04-03 11:24:27 -050035 <!-- SONAR -->
Sai Gandhama88f56f2018-04-03 17:09:33 -050036 <sonar.skip>true</sonar.skip>
IanHowell3901cf82018-04-03 11:24:27 -050037 <jacoco.version>0.7.7.201606060606</jacoco.version>
38 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
39 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
40 <!-- Default Sonar configuration -->
Sai Gandham61f8fdf2018-04-03 12:07:07 -050041 <sonar.jacoco.reportPaths>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPaths>
42 <sonar.jacoco.itReportPaths>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPaths>
IanHowell3901cf82018-04-03 11:24:27 -050043 <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
44 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000045 <nexusproxy>https://nexus.onap.org</nexusproxy>
46 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
47 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
48 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
Sai Gandham103d3ca2018-04-06 14:00:44 -050049 <sitePath>/content/sites/site/org/onap/aaf/authz/cadi/${project.artifactId}/${project.version}</sitePath>
Sai Gandhamc434f3c2018-03-27 16:29:24 +000050 </properties>
IanHowell3901cf82018-04-03 11:24:27 -050051
Instrumentala20accc2018-03-26 13:49:56 -070052 <developers>
53 <developer>
54 <name>Jonathan Gathman</name>
55 <email>jonathan.gathman@att.com</email>
56 <organization>ATT</organization>
57 <roles>
58 <role>Architect</role>
59 <role>Lead Developer</role>
60 </roles>
61 </developer>
62 <developer>
63 <name>Gabe Maurer</name>
64 <email>gabe.maurer@att.com</email>
65 <organization>ATT</organization>
66 <roles>
67 <role>Developer</role>
68 </roles>
69 </developer>
70 <developer>
71 <name>Ian Howell</name>
72 <email>ian.howell@att.com</email>
73 <organization>ATT</organization>
74 <roles>
75 <role>Developer</role>
76 </roles>
77 </developer>
Sai Gandhame01703c2018-03-26 22:57:09 +000078 <developer>
79 <name>Sai Gandham</name>
80 <email>sai.gandham@att.com</email>
81 <organization>ATT</organization>
82 <roles>
83 <role>Developer</role>
84 </roles>
85 </developer>
Instrumentala20accc2018-03-26 13:49:56 -070086 </developers>
87
88 <dependencies>
89 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050090 <groupId>org.onap.aaf.authz.misc</groupId>
Instrumentala20accc2018-03-26 13:49:56 -070091 <artifactId>aaf-misc-rosetta</artifactId>
IanHowell3901cf82018-04-03 11:24:27 -050092
Instrumentala20accc2018-03-26 13:49:56 -070093 </dependency>
94 <dependency>
Instrumental17ca7442018-03-29 16:54:19 -050095 <groupId>org.onap.aaf.authz.cadi</groupId>
Instrumentala20accc2018-03-26 13:49:56 -070096 <artifactId>aaf-cadi-core</artifactId>
97 </dependency>
98
99 <dependency>
100 <groupId>javax.servlet</groupId>
Instrumental924b18d2018-04-05 20:17:18 -0500101 <artifactId>javax.servlet-api</artifactId>
Instrumentala20accc2018-03-26 13:49:56 -0700102 <scope>compile</scope>
103 </dependency>
104 </dependencies>
105
106 <build>
107 <plugins>
108 <plugin>
109 <groupId>org.apache.maven.plugins</groupId>
110 <artifactId>maven-jarsigner-plugin</artifactId>
Sai Gandham6034c492018-03-27 17:29:56 +0000111 <version>1.4</version>
Instrumentala20accc2018-03-26 13:49:56 -0700112 </plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500113 <plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000114 <groupId>org.sonatype.plugins</groupId>
115 <artifactId>nexus-staging-maven-plugin</artifactId>
116 <version>1.6.7</version>
117 <extensions>true</extensions>
118 <configuration>
119 <nexusUrl>${nexusproxy}</nexusUrl>
120 <stagingProfileId>176c31dfe190a</stagingProfileId>
121 <serverId>ecomp-staging</serverId>
122 </configuration>
IanHowell3901cf82018-04-03 11:24:27 -0500123 </plugin>
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000124 <plugin>
IanHowell3901cf82018-04-03 11:24:27 -0500125 <groupId>org.jacoco</groupId>
126 <artifactId>jacoco-maven-plugin</artifactId>
127 <version>${jacoco.version}</version>
128 <configuration>
129 <excludes>
130 <exclude>**/gen/**</exclude>
131 <exclude>**/generated-sources/**</exclude>
132 <exclude>**/yang-gen/**</exclude>
133 <exclude>**/pax/**</exclude>
134 </excludes>
135 </configuration>
136 <executions>
137 <execution>
138 <id>pre-unit-test</id>
139 <goals>
140 <goal>prepare-agent</goal>
141 </goals>
142 <configuration>
143 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
144 <propertyName>surefireArgLine</propertyName>
145 </configuration>
146 </execution>
147 <execution>
148 <id>post-unit-test</id>
149 <phase>test</phase>
150 <goals>
151 <goal>report</goal>
152 </goals>
153 <configuration>
154 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
155 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
156 </configuration>
157 </execution>
158 <execution>
159 <id>pre-integration-test</id>
160 <phase>pre-integration-test</phase>
161 <goals>
162 <goal>prepare-agent</goal>
163 </goals>
164 <configuration>
165 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
166 <propertyName>failsafeArgLine</propertyName>
167 </configuration>
168 </execution>
169 <execution>
170 <id>post-integration-test</id>
171 <phase>post-integration-test</phase>
172 <goals>
173 <goal>report</goal>
174 </goals>
175 <configuration>
176 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
177 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
178 </configuration>
179 </execution>
180 </executions>
181 </plugin>
Instrumentala20accc2018-03-26 13:49:56 -0700182 </plugins>
183 </build>
IanHowell3901cf82018-04-03 11:24:27 -0500184
Sai Gandhamc434f3c2018-03-27 16:29:24 +0000185 <distributionManagement>
186 <repository>
187 <id>ecomp-releases</id>
188 <name>AAF Release Repository</name>
189 <url>${nexusproxy}${releaseNexusPath}</url>
190 </repository>
191 <snapshotRepository>
192 <id>ecomp-snapshots</id>
193 <name>AAF Snapshot Repository</name>
194 <url>${nexusproxy}${snapshotNexusPath}</url>
195 </snapshotRepository>
196 <site>
197 <id>ecomp-site</id>
198 <url>dav:${nexusproxy}${sitePath}</url>
199 </site>
200 </distributionManagement>
Instrumentala20accc2018-03-26 13:49:56 -0700201</project>