Change xacml-pdp frankfurt default branch
[policy/xacml-pdp.git] / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   ONAP Policy Engine - XACML PDP
4   ================================================================================
5   Copyright (C) 2018-2020 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>3.1.3</version>
29         <relativePath />
30     </parent>
31
32     <groupId>org.onap.policy.xacml-pdp</groupId>
33     <artifactId>policy-xacml-pdp</artifactId>
34     <version>2.2.3-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         <policy.common.version>1.6.5</policy.common.version>
43         <policy.models.version>2.2.6</policy.models.version>
44     </properties>
45
46     <modules>
47         <module>main</module>
48         <module>applications</module>
49         <module>packages</module>
50         <module>testsuites</module>
51         <module>xacml-test</module>
52     </modules>
53
54     <dependencies>
55         <dependency>
56             <groupId>junit</groupId>
57             <artifactId>junit</artifactId>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>io.cucumber</groupId>
62             <artifactId>cucumber-java</artifactId>
63             <scope>test</scope>
64         </dependency>
65         <dependency>
66             <groupId>io.cucumber</groupId>
67             <artifactId>cucumber-junit</artifactId>
68             <scope>test</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.assertj</groupId>
72             <artifactId>assertj-core</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.slf4j</groupId>
77             <artifactId>slf4j-ext</artifactId>
78             <version>1.8.0-beta2</version>
79         </dependency>
80         <dependency>
81             <groupId>org.slf4j</groupId>
82             <artifactId>slf4j-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>ch.qos.logback</groupId>
86             <artifactId>logback-core</artifactId>
87         </dependency>
88         <dependency>
89             <groupId>ch.qos.logback</groupId>
90             <artifactId>logback-classic</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.yaml</groupId>
94             <artifactId>snakeyaml</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>org.projectlombok</groupId>
98             <artifactId>lombok</artifactId>
99         </dependency>
100         <dependency>
101             <groupId>org.json</groupId>
102             <artifactId>json</artifactId>
103             <version>20180813</version>
104         </dependency>
105         <dependency>
106             <groupId>org.onap.policy.models</groupId>
107             <artifactId>policy-models-decisions</artifactId>
108             <version>${policy.models.version}</version>
109         </dependency>
110         <dependency>
111             <groupId>org.onap.policy.models</groupId>
112             <artifactId>policy-models-tosca</artifactId>
113             <version>${policy.models.version}</version>
114         </dependency>
115     </dependencies>
116
117     <distributionManagement>
118         <site>
119             <id>ecomp-site</id>
120             <url>dav:${nexusproxy}${sitePath}</url>
121         </site>
122     </distributionManagement>
123
124     <build>
125         <plugins>
126             <plugin>
127                 <artifactId>maven-checkstyle-plugin</artifactId>
128                 <executions>
129                     <execution>
130                         <id>onap-java-style</id>
131                         <goals>
132                             <goal>check</goal>
133                         </goals>
134                         <phase>process-sources</phase>
135                         <configuration>
136                             <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
137                                 with minor changes -->
138                             <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
139                             <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
140                             <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
141                             <includeResources>true</includeResources>
142                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
143                             <includeTestResources>true</includeTestResources>
144                             <excludes>
145                             </excludes>
146                             <suppressionsLocation>/checkstyle-suppressions.xml</suppressionsLocation>
147                             <consoleOutput>true</consoleOutput>
148                             <failOnViolation>true</failOnViolation>
149                             <violationSeverity>warning</violationSeverity>
150                         </configuration>
151                     </execution>
152                 </executions>
153                 <dependencies>
154                     <dependency>
155                         <groupId>org.onap.oparent</groupId>
156                         <artifactId>checkstyle</artifactId>
157                         <version>${oparent.version}</version>
158                         <scope>compile</scope>
159                     </dependency>
160                 </dependencies>
161             </plugin>
162         </plugins>
163         <pluginManagement>
164             <plugins>
165                 <plugin>
166                     <groupId>org.eclipse.m2e</groupId>
167                     <artifactId>lifecycle-mapping</artifactId>
168                     <version>1.0.0</version>
169                     <configuration>
170                         <lifecycleMappingMetadata>
171                             <pluginExecutions>
172                                 <pluginExecution>
173                                     <pluginExecutionFilter>
174                                         <groupId>org.apache.maven.plugins</groupId>
175                                         <artifactId>maven-checkstyle-plugin</artifactId>
176                                         <versionRange>2.17,)</versionRange>
177                                         <goals>
178                                             <goal>check</goal>
179                                         </goals>
180                                     </pluginExecutionFilter>
181                                     <action>
182                                         <ignore />
183                                     </action>
184                                 </pluginExecution>
185                             </pluginExecutions>
186                         </lifecycleMappingMetadata>
187                     </configuration>
188                 </plugin>
189             </plugins>
190         </pluginManagement>
191     </build>
192 </project>