Move AAF Poms to 2.1.16
[aaf/authz.git] / cadi / client / pom.xml
1 <!--
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">
22     <parent>
23         <groupId>org.onap.aaf.authz</groupId>
24         <artifactId>cadiparent</artifactId>
25         <version>2.1.16-SNAPSHOT</version>
26         <relativePath>..</relativePath>
27     </parent>
28
29     <artifactId>aaf-cadi-client</artifactId>
30     <name>AAF CADI Client</name>
31     <packaging>jar</packaging>
32     <modelVersion>4.0.0</modelVersion>
33
34     <properties>
35     <scijava.jvm.version>1.8</scijava.jvm.version>
36         <!--  SONAR  -->
37         <!-- <sonar.skip>true</sonar.skip> -->
38         <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 -->
42         <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>
44         <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
45         <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
46         <nexusproxy>https://nexus.onap.org</nexusproxy>
47         <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
48         <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
49         <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
50         <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
51     </properties>
52
53     <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>
79         <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>
87     </developers>
88
89     <dependencies>
90         <dependency>
91             <groupId>org.onap.aaf.authz</groupId>
92             <artifactId>aaf-misc-rosetta</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.onap.aaf.authz</groupId>
96             <artifactId>aaf-cadi-core</artifactId>
97         </dependency>
98
99         <dependency>
100             <groupId>javax.servlet</groupId>
101             <artifactId>javax.servlet-api</artifactId>
102             <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>
111                 <version>1.4</version>
112             </plugin>
113             <plugin>
114                 <groupId>org.jacoco</groupId>
115                 <artifactId>jacoco-maven-plugin</artifactId>
116                 <configuration>
117                     <excludes>
118                         <exclude>**/gen/**</exclude>
119                         <exclude>**/generated-sources/**</exclude>
120                         <exclude>**/yang-gen/**</exclude>
121                         <exclude>**/pax/**</exclude>
122                     </excludes>
123                 </configuration>
124                 <executions>
125                     <execution>
126                         <id>pre-unit-test</id>
127                         <goals>
128                             <goal>prepare-agent</goal>
129                         </goals>
130                         <configuration>
131                             <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
132                             <propertyName>surefireArgLine</propertyName>
133                         </configuration>
134                     </execution>
135                     <execution>
136                         <id>post-unit-test</id>
137                         <phase>test</phase>
138                         <goals>
139                             <goal>report</goal>
140                         </goals>
141                         <configuration>
142                             <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
143                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
144                         </configuration>
145                     </execution>
146                     <execution>
147                         <id>pre-integration-test</id>
148                         <phase>pre-integration-test</phase>
149                         <goals>
150                             <goal>prepare-agent</goal>
151                         </goals>
152                         <configuration>
153                             <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
154                             <propertyName>failsafeArgLine</propertyName>
155                         </configuration>
156                     </execution>
157                     <execution>
158                         <id>post-integration-test</id>
159                         <phase>post-integration-test</phase>
160                         <goals>
161                             <goal>report</goal>
162                         </goals>
163                         <configuration>
164                             <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
165                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
166                         </configuration>
167                     </execution>
168                 </executions>
169             </plugin>
170         </plugins>
171     </build>
172
173     <distributionManagement>
174         <repository>
175             <id>ecomp-releases</id>
176             <name>AAF Release Repository</name>
177             <url>${nexusproxy}${releaseNexusPath}</url>
178         </repository>
179         <snapshotRepository>
180             <id>ecomp-snapshots</id>
181             <name>AAF Snapshot Repository</name>
182             <url>${nexusproxy}${snapshotNexusPath}</url>
183         </snapshotRepository>
184         <site>
185             <id>ecomp-site</id>
186             <url>dav:${nexusproxy}${sitePath}</url>
187         </site>
188     </distributionManagement>
189 </project>