Fix sonar issues xacml pdp
[policy/xacml-pdp.git] / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine - XACML PDP
4   ================================================================================
5   Copyright (C) 2018-2019 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"
22     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
23     <modelVersion>4.0.0</modelVersion>
24
25     <parent>
26         <groupId>org.onap.policy.parent</groupId>
27         <artifactId>integration</artifactId>
28         <version>2.1.0-SNAPSHOT</version>
29         <relativePath />
30     </parent>
31
32     <groupId>org.onap.policy.xacml-pdp</groupId>
33     <artifactId>policy-xacml-pdp</artifactId>
34     <version>2.0.0-SNAPSHOT</version>
35
36     <packaging>pom</packaging>
37
38     <name>policy-xacml-pdp</name>
39     <description>This code implements the XACML PDP engine</description>
40
41     <properties>
42         <!-- sonar/jacoco overrides -->
43         <!-- Overriding oparent default sonar/jacoco settings Combine all our reports into one file shared across sub-modules -->
44         <sonar.jacoco.reportPath>${project.basedir}/../target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
45         <sonar.jacoco.itReportPath>${project.basedir}/../target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
46         <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
47         
48         <policy.common.version>1.4.0-SNAPSHOT</policy.common.version>
49         <policy.models.version>2.0.0-SNAPSHOT</policy.models.version>
50     </properties>
51
52     <modules>
53         <module>main</module>
54         <module>applications</module>
55         <module>packages</module>
56         <module>testsuites</module>
57     </modules>
58     
59     <dependencies>
60         <dependency>
61             <groupId>junit</groupId>
62             <artifactId>junit</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>io.cucumber</groupId>
67             <artifactId>cucumber-java</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>io.cucumber</groupId>
72             <artifactId>cucumber-junit</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.assertj</groupId>
77             <artifactId>assertj-core</artifactId>
78             <scope>test</scope>
79         </dependency>
80         <dependency>
81             <groupId>org.slf4j</groupId>
82             <artifactId>slf4j-ext</artifactId>
83             <version>1.8.0-beta2</version>
84         </dependency>
85         <dependency>
86             <groupId>org.slf4j</groupId>
87             <artifactId>slf4j-api</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>ch.qos.logback</groupId>
91             <artifactId>logback-core</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>ch.qos.logback</groupId>
95             <artifactId>logback-classic</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>org.yaml</groupId>
99             <artifactId>snakeyaml</artifactId>
100             <version>1.24</version>
101         </dependency>
102         <dependency>
103             <groupId>org.json</groupId>
104             <artifactId>json</artifactId>
105             <version>20180813</version>
106         </dependency>
107         <dependency>
108             <groupId>com.att.research.xacml</groupId>
109             <artifactId>xacml-pdp</artifactId>
110             <version>2.0.0</version>
111         </dependency>
112         <dependency>
113             <groupId>org.onap.policy.models</groupId>
114             <artifactId>models-decisions</artifactId>
115             <version>${policy.models.version}</version>
116         </dependency>        
117         <dependency>
118             <groupId>org.onap.policy.models</groupId>
119             <artifactId>policy-models-tosca</artifactId>
120             <version>${policy.models.version}</version>
121         </dependency>        
122     </dependencies>
123     
124     <distributionManagement>
125         <site>
126             <id>ecomp-site</id>
127             <url>dav:${nexusproxy}${sitePath}</url>
128         </site>
129     </distributionManagement>
130
131     <build>
132         <plugins>
133             <plugin>
134                 <groupId>org.jacoco</groupId>
135                 <artifactId>jacoco-maven-plugin</artifactId>
136                 <executions>
137                     <execution>
138                         <id>pre-unit-test</id>
139                         <goals>
140                             <goal>prepare-agent</goal>
141                         </goals>
142                         <configuration>
143                             <destFile>${sonar.jacoco.reportPath}</destFile>
144                             <append>true</append>
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>${sonar.jacoco.reportPath}</dataFile>
155                         </configuration>
156                     </execution>
157                 </executions>
158             </plugin>
159             <plugin>
160                 <artifactId>maven-checkstyle-plugin</artifactId>
161                 <executions>
162                     <execution>
163                         <id>onap-java-style</id>
164                         <goals>
165                             <goal>check</goal>
166                         </goals>
167                         <phase>process-sources</phase>
168                         <configuration>
169                             <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml 
170                                 with minor changes -->
171                             <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
172                             <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
173                             <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
174                             <includeResources>true</includeResources>
175                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
176                             <includeTestResources>true</includeTestResources>
177                             <excludes>
178                             </excludes>
179                             <consoleOutput>true</consoleOutput>
180                             <failOnViolation>true</failOnViolation>
181                             <violationSeverity>warning</violationSeverity>
182                         </configuration>
183                     </execution>
184                 </executions>
185                 <dependencies>
186                     <dependency>
187                         <groupId>org.onap.oparent</groupId>
188                         <artifactId>checkstyle</artifactId>
189                         <version>${oparent.version}</version>
190                         <scope>compile</scope>
191                     </dependency>
192                 </dependencies>
193             </plugin>
194         </plugins>
195         <pluginManagement>
196             <plugins>
197                 <plugin>
198                     <groupId>org.jacoco</groupId>
199                     <artifactId>jacoco-maven-plugin</artifactId>
200                     <version>${jacoco.version}</version>
201                     <configuration>
202                         <!-- Note: This exclusion list should match <sonar.exclusions> property above -->
203                         <excludes>
204                             <exclude>**/gen/**</exclude>
205                             <exclude>**/generated-sources/**</exclude>
206                             <exclude>**/yang-gen/**</exclude>
207                             <exclude>**/pax/**</exclude>
208                         </excludes>
209                     </configuration>
210                     <executions>
211                         <!-- Prepares the property pointing to the JaCoCo runtime agent which is passed as VM argument when 
212                             Maven the Surefire plugin is executed. -->
213                         <execution>
214                             <id>pre-unit-test</id>
215                             <goals>
216                                 <goal>prepare-agent</goal>
217                             </goals>
218                             <configuration>
219                                 <destFile>${sonar.jacoco.reportPath}</destFile>
220                             </configuration>
221                         </execution>
222                         <!-- Ensures that the code coverage report for unit tests is created after unit tests have been run. -->
223                         <execution>
224                             <id>post-unit-test</id>
225                             <phase>test</phase>
226                             <goals>
227                                 <goal>report</goal>
228                             </goals>
229                             <configuration>
230                                 <dataFile>${sonar.jacoco.reportPath}</dataFile>
231                             </configuration>
232                         </execution>
233                     </executions>
234                 </plugin>
235                 <plugin>
236                     <groupId>org.eclipse.m2e</groupId>
237                     <artifactId>lifecycle-mapping</artifactId>
238                     <version>1.0.0</version>
239                     <configuration>
240                         <lifecycleMappingMetadata>
241                             <pluginExecutions>
242                                 <pluginExecution>
243                                     <pluginExecutionFilter>
244                                         <groupId>org.apache.maven.plugins</groupId>
245                                         <artifactId>maven-checkstyle-plugin</artifactId>
246                                         <versionRange>2.17,)</versionRange>
247                                         <goals>
248                                             <goal>check</goal>
249                                         </goals>
250                                     </pluginExecutionFilter>
251                                     <action>
252                                         <ignore />
253                                     </action>
254                                 </pluginExecution>
255                             </pluginExecutions>
256                         </lifecycleMappingMetadata>
257                     </configuration>
258                 </plugin>
259             </plugins>
260         </pluginManagement>
261     </build>
262 </project>