Reorder xacml 2.0.0 loading
[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>org.onap.policy.models</groupId>
109             <artifactId>models-decisions</artifactId>
110             <version>${policy.models.version}</version>
111         </dependency>        
112         <dependency>
113             <groupId>org.onap.policy.models</groupId>
114             <artifactId>policy-models-tosca</artifactId>
115             <version>${policy.models.version}</version>
116         </dependency>        
117     </dependencies>
118     
119     <distributionManagement>
120         <site>
121             <id>ecomp-site</id>
122             <url>dav:${nexusproxy}${sitePath}</url>
123         </site>
124     </distributionManagement>
125
126     <build>
127         <plugins>
128             <plugin>
129                 <groupId>org.jacoco</groupId>
130                 <artifactId>jacoco-maven-plugin</artifactId>
131                 <executions>
132                     <execution>
133                         <id>pre-unit-test</id>
134                         <goals>
135                             <goal>prepare-agent</goal>
136                         </goals>
137                         <configuration>
138                             <destFile>${sonar.jacoco.reportPath}</destFile>
139                             <append>true</append>
140                         </configuration>
141                     </execution>
142                     <execution>
143                         <id>post-unit-test</id>
144                         <phase>test</phase>
145                         <goals>
146                             <goal>report</goal>
147                         </goals>
148                         <configuration>
149                             <dataFile>${sonar.jacoco.reportPath}</dataFile>
150                         </configuration>
151                     </execution>
152                 </executions>
153             </plugin>
154             <plugin>
155                 <artifactId>maven-checkstyle-plugin</artifactId>
156                 <executions>
157                     <execution>
158                         <id>onap-java-style</id>
159                         <goals>
160                             <goal>check</goal>
161                         </goals>
162                         <phase>process-sources</phase>
163                         <configuration>
164                             <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml 
165                                 with minor changes -->
166                             <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
167                             <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
168                             <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
169                             <includeResources>true</includeResources>
170                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
171                             <includeTestResources>true</includeTestResources>
172                             <excludes>
173                             </excludes>
174                             <consoleOutput>true</consoleOutput>
175                             <failOnViolation>true</failOnViolation>
176                             <violationSeverity>warning</violationSeverity>
177                         </configuration>
178                     </execution>
179                 </executions>
180                 <dependencies>
181                     <dependency>
182                         <groupId>org.onap.oparent</groupId>
183                         <artifactId>checkstyle</artifactId>
184                         <version>${oparent.version}</version>
185                         <scope>compile</scope>
186                     </dependency>
187                 </dependencies>
188             </plugin>
189         </plugins>
190         <pluginManagement>
191             <plugins>
192                 <plugin>
193                     <groupId>org.jacoco</groupId>
194                     <artifactId>jacoco-maven-plugin</artifactId>
195                     <version>${jacoco.version}</version>
196                     <configuration>
197                         <!-- Note: This exclusion list should match <sonar.exclusions> property above -->
198                         <excludes>
199                             <exclude>**/gen/**</exclude>
200                             <exclude>**/generated-sources/**</exclude>
201                             <exclude>**/yang-gen/**</exclude>
202                             <exclude>**/pax/**</exclude>
203                         </excludes>
204                     </configuration>
205                     <executions>
206                         <!-- Prepares the property pointing to the JaCoCo runtime agent which is passed as VM argument when 
207                             Maven the Surefire plugin is executed. -->
208                         <execution>
209                             <id>pre-unit-test</id>
210                             <goals>
211                                 <goal>prepare-agent</goal>
212                             </goals>
213                             <configuration>
214                                 <destFile>${sonar.jacoco.reportPath}</destFile>
215                             </configuration>
216                         </execution>
217                         <!-- Ensures that the code coverage report for unit tests is created after unit tests have been run. -->
218                         <execution>
219                             <id>post-unit-test</id>
220                             <phase>test</phase>
221                             <goals>
222                                 <goal>report</goal>
223                             </goals>
224                             <configuration>
225                                 <dataFile>${sonar.jacoco.reportPath}</dataFile>
226                             </configuration>
227                         </execution>
228                     </executions>
229                 </plugin>
230                 <plugin>
231                     <groupId>org.eclipse.m2e</groupId>
232                     <artifactId>lifecycle-mapping</artifactId>
233                     <version>1.0.0</version>
234                     <configuration>
235                         <lifecycleMappingMetadata>
236                             <pluginExecutions>
237                                 <pluginExecution>
238                                     <pluginExecutionFilter>
239                                         <groupId>org.apache.maven.plugins</groupId>
240                                         <artifactId>maven-checkstyle-plugin</artifactId>
241                                         <versionRange>2.17,)</versionRange>
242                                         <goals>
243                                             <goal>check</goal>
244                                         </goals>
245                                     </pluginExecutionFilter>
246                                     <action>
247                                         <ignore />
248                                     </action>
249                                 </pluginExecution>
250                             </pluginExecutions>
251                         </lifecycleMappingMetadata>
252                     </configuration>
253                 </plugin>
254             </plugins>
255         </pluginManagement>
256     </build>
257 </project>