changed to unmaintained
[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.17-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>Sai Gandham</name>
65             <email>sai.gandham@att.com</email>
66             <organization>ATT</organization>
67             <roles>
68                 <role>Developer</role>
69             </roles>
70         </developer>
71     </developers>
72
73     <dependencies>
74         <dependency>
75             <groupId>org.onap.aaf.authz</groupId>
76             <artifactId>aaf-misc-rosetta</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>org.onap.aaf.authz</groupId>
80             <artifactId>aaf-cadi-core</artifactId>
81         </dependency>
82
83         <dependency>
84             <groupId>javax.servlet</groupId>
85             <artifactId>javax.servlet-api</artifactId>
86             <scope>compile</scope>
87         </dependency>
88     </dependencies>
89
90     <build>
91         <plugins>
92             <plugin>
93                 <groupId>org.apache.maven.plugins</groupId>
94                 <artifactId>maven-jarsigner-plugin</artifactId>
95                 <version>1.4</version>
96             </plugin>
97             <plugin>
98                 <groupId>org.jacoco</groupId>
99                 <artifactId>jacoco-maven-plugin</artifactId>
100                 <configuration>
101                     <excludes>
102                         <exclude>**/gen/**</exclude>
103                         <exclude>**/generated-sources/**</exclude>
104                         <exclude>**/yang-gen/**</exclude>
105                         <exclude>**/pax/**</exclude>
106                     </excludes>
107                 </configuration>
108                 <executions>
109                     <execution>
110                         <id>pre-unit-test</id>
111                         <goals>
112                             <goal>prepare-agent</goal>
113                         </goals>
114                         <configuration>
115                             <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
116                             <propertyName>surefireArgLine</propertyName>
117                         </configuration>
118                     </execution>
119                     <execution>
120                         <id>post-unit-test</id>
121                         <phase>test</phase>
122                         <goals>
123                             <goal>report</goal>
124                         </goals>
125                         <configuration>
126                             <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
127                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
128                         </configuration>
129                     </execution>
130                     <execution>
131                         <id>pre-integration-test</id>
132                         <phase>pre-integration-test</phase>
133                         <goals>
134                             <goal>prepare-agent</goal>
135                         </goals>
136                         <configuration>
137                             <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
138                             <propertyName>failsafeArgLine</propertyName>
139                         </configuration>
140                     </execution>
141                     <execution>
142                         <id>post-integration-test</id>
143                         <phase>post-integration-test</phase>
144                         <goals>
145                             <goal>report</goal>
146                         </goals>
147                         <configuration>
148                             <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
149                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
150                         </configuration>
151                     </execution>
152                 </executions>
153             </plugin>
154         </plugins>
155     </build>
156
157     <distributionManagement>
158         <repository>
159             <id>ecomp-releases</id>
160             <name>AAF Release Repository</name>
161             <url>${nexusproxy}${releaseNexusPath}</url>
162         </repository>
163         <snapshotRepository>
164             <id>ecomp-snapshots</id>
165             <name>AAF Snapshot Repository</name>
166             <url>${nexusproxy}${snapshotNexusPath}</url>
167         </snapshotRepository>
168         <site>
169             <id>ecomp-site</id>
170             <url>dav:${nexusproxy}${sitePath}</url>
171         </site>
172     </distributionManagement>
173 </project>