Merge "Fix for Sonar tests in POMs"
[aaf/authz.git] / auth / auth-certman / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- * ============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         * -->
14 <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>
18                 <groupId>org.onap.aaf.authz.auth</groupId>
19                 <artifactId>parent</artifactId>
20                 <version>2.1.0-SNAPSHOT</version>
21                 <relativePath>../pom.xml</relativePath>
22         </parent>
23
24         <artifactId>aaf-auth-certman</artifactId>
25         <name>AAF Auth Certificate Manager</name>
26         <description>Certificate Manager API</description>
27
28         <properties>
29                 <!-- SONAR -->
30                 <jacoco.version>0.7.7.201606060606</jacoco.version>
31                 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
32                 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
33                 <!-- Default Sonar configuration -->
34                 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
35                 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
36                 <!-- Note: This list should match jacoco-maven-plugin's exclusion list 
37                         below -->
38                 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
39                 <nexusproxy>https://nexus.onap.org</nexusproxy>
40                 <snapshotNexusPath>/content/repositories/snapshots/</snapshotNexusPath>
41                 <releaseNexusPath>/content/repositories/releases/</releaseNexusPath>
42                 <stagingNexusPath>/content/repositories/staging/</stagingNexusPath>
43                 <sitePath>/content/sites/site/org/onap/aaf/authz/${project.artifactId}/${project.version}</sitePath>
44         </properties>
45
46         <dependencies>
47                 <dependency>
48                         <groupId>org.onap.aaf.authz.auth</groupId>
49                         <artifactId>aaf-auth-core</artifactId>
50                 </dependency>
51
52                 <dependency>
53                         <groupId>org.onap.aaf.authz.auth</groupId>
54                         <artifactId>aaf-auth-cass</artifactId>
55                 </dependency>
56
57                 <dependency>
58                         <groupId>org.onap.aaf.authz.cadi</groupId>
59                         <artifactId>aaf-cadi-aaf</artifactId>
60                 </dependency>
61
62                 <dependency>
63                         <groupId>com.google.code.jscep</groupId>
64                         <artifactId>jscep</artifactId>
65                         <version>2.4.0</version>
66                 </dependency>
67
68         </dependencies>
69
70         <build>
71                 <plugins>
72                         <plugin>
73                                 <groupId>org.apache.maven.plugins</groupId>
74                                 <artifactId>maven-jar-plugin</artifactId>
75                                 <configuration>
76                                         <includes>
77                                                 <include>**/*.class</include>
78                                         </includes>
79                                 </configuration>
80                                 <version>2.3.1</version>
81                         </plugin>
82
83                         <!--This plugin's configuration is used to store Eclipse m2e settings 
84                                 only. It has no influence on the Maven build itself. -->
85                         <plugin>
86                                 <groupId>org.apache.maven.plugins</groupId>
87                                 <artifactId>maven-deploy-plugin</artifactId>
88                                 <configuration>
89                                         <skip>false</skip>
90                                 </configuration>
91                         </plugin>
92                         <plugin>
93                                 <groupId>org.codehaus.mojo</groupId>
94                                 <artifactId>appassembler-maven-plugin</artifactId>
95                                 <configuration>
96                                         <programs>
97                                                 <program>
98                                                         <mainClass>org.onap.aaf.auth.cm.AAF_CM</mainClass>
99                                                         <name>cm</name>
100                                                         <commandLineArguments>
101                                                                 <commandLineArgument>cadi_prop_files=${project.conf_dir}/org.osaaf.cm.props</commandLineArgument>
102                                                         </commandLineArguments>
103                                                 </program>
104                                         </programs>
105                                 </configuration>
106                         </plugin>
107                         <plugin>
108                                 <groupId>org.sonatype.plugins</groupId>
109                                 <artifactId>nexus-staging-maven-plugin</artifactId>
110                                 <version>1.6.7</version>
111                                 <extensions>true</extensions>
112                                 <configuration>
113                                         <nexusUrl>${nexusproxy}</nexusUrl>
114                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
115                                         <serverId>ecomp-staging</serverId>
116                                 </configuration>
117                         </plugin>
118                         <plugin>
119                                 <groupId>org.jacoco</groupId>
120                                 <artifactId>jacoco-maven-plugin</artifactId>
121                                 <version>${jacoco.version}</version>
122                                 <configuration>
123                                         <excludes>
124                                                 <exclude>**/gen/**</exclude>
125                                                 <exclude>**/generated-sources/**</exclude>
126                                                 <exclude>**/yang-gen/**</exclude>
127                                                 <exclude>**/pax/**</exclude>
128                                         </excludes>
129                                 </configuration>
130                                 <executions>
131
132                                         <execution>
133                                                 <id>pre-unit-test</id>
134                                                 <goals>
135                                                         <goal>prepare-agent</goal>
136                                                 </goals>
137                                                 <configuration>
138                                                         <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
139                                                         <propertyName>surefireArgLine</propertyName>
140                                                 </configuration>
141                                         </execution>
142
143
144                                         <execution>
145                                                 <id>post-unit-test</id>
146                                                 <phase>test</phase>
147                                                 <goals>
148                                                         <goal>report</goal>
149                                                 </goals>
150                                                 <configuration>
151                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
152                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
153                                                 </configuration>
154                                         </execution>
155                                         <execution>
156                                                 <id>pre-integration-test</id>
157                                                 <phase>pre-integration-test</phase>
158                                                 <goals>
159                                                         <goal>prepare-agent</goal>
160                                                 </goals>
161                                                 <configuration>
162                                                         <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
163                                                         <propertyName>failsafeArgLine</propertyName>
164                                                 </configuration>
165                                         </execution>
166
167                                         <execution>
168                                                 <id>post-integration-test</id>
169                                                 <phase>post-integration-test</phase>
170                                                 <goals>
171                                                         <goal>report</goal>
172                                                 </goals>
173                                                 <configuration>
174                                                         <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
175                                                         <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
176                                                 </configuration>
177                                         </execution>
178                                 </executions>
179                         </plugin>
180                 </plugins>
181         </build>
182
183         <distributionManagement>
184                 <repository>
185                         <id>ecomp-releases</id>
186                         <name>AAF Release Repository</name>
187                         <url>${nexusproxy}${releaseNexusPath}</url>
188                 </repository>
189                 <snapshotRepository>
190                         <id>ecomp-snapshots</id>
191                         <name>AAF Snapshot Repository</name>
192                         <url>${nexusproxy}${snapshotNexusPath}</url>
193                 </snapshotRepository>
194                 <site>
195                         <id>ecomp-site</id>
196                         <url>dav:${nexusproxy}${sitePath}</url>
197                 </site>
198         </distributionManagement>
199
200 </project>