bump to 1.6.2-SNAPSHOT
[policy/drools-applications.git] / controlloop / common / guard / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   drools-pdp-apps
4   ================================================================================
5   Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6   Modifications Copyright (C) 2020 Bell Canada.
7   ================================================================================
8   Licensed under the Apache License, Version 2.0 (the "License");
9   you may not use this file except in compliance with the License.
10   You may obtain a copy of the License at
11
12        http://www.apache.org/licenses/LICENSE-2.0
13
14   Unless required by applicable law or agreed to in writing, software
15   distributed under the License is distributed on an "AS IS" BASIS,
16   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17   See the License for the specific language governing permissions and
18   limitations under the License.
19   ============LICENSE_END=========================================================
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   <modelVersion>4.0.0</modelVersion>
23
24   <parent>
25     <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
26     <artifactId>drools-applications-common</artifactId>
27     <version>1.6.2-SNAPSHOT</version>
28   </parent>
29
30   <artifactId>guard</artifactId>
31
32   <dependencies>
33     <dependency>
34       <groupId>org.onap.policy.models.policy-models-interactions</groupId>
35       <artifactId>model-yaml</artifactId>
36       <version>${policy.models.version}</version>
37       <scope>provided</scope>
38     </dependency>
39     <dependency>
40         <groupId>com.att.research.xacml</groupId>
41         <artifactId>xacml-pdp</artifactId>
42         <version>1.0.2</version>
43         <exclusions>
44             <!--
45                 Exclude jars with an older version or that are insecure and not needed. 
46              -->
47             <exclusion>
48                 <artifactId>commons-codec</artifactId>
49                 <groupId>commons-codec</groupId>
50             </exclusion>
51             <exclusion>
52                 <artifactId>commons-logging</artifactId>
53                 <groupId>commons-logging</groupId>
54             </exclusion>
55             <exclusion>
56                 <artifactId>guava</artifactId>
57                 <groupId>com.google.guava</groupId>
58             </exclusion>
59             <exclusion>
60                 <artifactId>commons-lang3</artifactId>
61                 <groupId>org.apache.commons</groupId>
62             </exclusion>
63             <exclusion>
64                 <artifactId>jackson-databind</artifactId>
65                 <groupId>com.fasterxml.jackson.core</groupId>
66             </exclusion>
67             <exclusion>
68                 <artifactId>commons-collections</artifactId>
69                 <groupId>commons-collections</groupId>
70             </exclusion>
71             <exclusion>
72                 <artifactId>commons-lang</artifactId>
73                 <groupId>commons-lang</groupId>
74             </exclusion>
75         </exclusions>
76     </dependency>
77     <dependency>
78       <groupId>commons-io</groupId>
79       <artifactId>commons-io</artifactId>
80       <version>2.5</version>
81       <scope>provided</scope>
82     </dependency>
83     <dependency>
84       <groupId>org.apache.httpcomponents</groupId>
85       <artifactId>httpclient</artifactId>
86       <scope>provided</scope>
87     </dependency>
88     <dependency>
89       <groupId>org.drools</groupId>
90       <artifactId>drools-core</artifactId>
91       <scope>provided</scope>
92     </dependency>
93     <dependency>
94       <groupId>org.eclipse.persistence</groupId>
95       <artifactId>org.eclipse.persistence.jpa</artifactId>
96       <scope>provided</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.onap.policy.common</groupId>
100       <artifactId>policy-endpoints</artifactId>
101       <version>${version.policy.common}</version>
102       <scope>provided</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.onap.policy.drools-pdp</groupId>
106       <artifactId>policy-management</artifactId>
107       <version>${version.policy.drools-pdp}</version>
108       <scope>provided</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.onap.policy.models.policy-models-interactions</groupId>
112       <artifactId>simulators</artifactId>
113       <version>${policy.models.version}</version>
114       <scope>test</scope>
115     </dependency>
116     <dependency>
117       <groupId>org.onap.policy.models</groupId>
118       <artifactId>policy-models-decisions</artifactId>
119       <version>${policy.models.version}</version>
120     </dependency>
121     <dependency>
122       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
123       <artifactId>rest</artifactId>
124       <version>${policy.models.version}</version>
125     </dependency>
126     <dependency>
127       <groupId>org.mockito</groupId>
128       <artifactId>mockito-core</artifactId>
129       <scope>test</scope>
130     </dependency>
131     <dependency>
132       <groupId>com.h2database</groupId>
133       <artifactId>h2</artifactId>
134       <scope>test</scope>
135     </dependency>
136   </dependencies>
137     <build>
138         <plugins>
139             <plugin>
140                 <artifactId>maven-checkstyle-plugin</artifactId>
141                 <executions>
142                     <execution>
143                         <id>onap-java-style</id>
144                         <goals>
145                             <goal>check</goal>
146                         </goals>
147                         <phase>process-sources</phase>
148                         <configuration>
149                             <!-- Use Google Java Style Guide:
150                             https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
151                             with minor changes -->
152                             <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
153                             <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
154                             <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
155                             <includeResources>true</includeResources>
156                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
157                             <includeTestResources>true</includeTestResources>
158                             <excludes>
159                             </excludes>
160                             <consoleOutput>true</consoleOutput>
161                             <failsOnViolation>true</failsOnViolation>
162                             <violationSeverity>warning</violationSeverity>
163                         </configuration>
164                     </execution>
165                 </executions>
166                 <dependencies>
167                     <dependency>
168                         <groupId>org.onap.oparent</groupId>
169                         <artifactId>checkstyle</artifactId>
170                         <version>${oparent.version}</version>
171                         <scope>compile</scope>
172                     </dependency>
173                 </dependencies>
174             </plugin>
175         </plugins>
176     </build>
177 </project>