blob: 1a16adacc8103bae6cbcae3d674ae162316b7c71 [file] [log] [blame]
Pamela Dragoshd548b612018-04-16 11:53:04 -04001<!--
2 ============LICENSE_START=======================================================
3 drools-pdp-apps
4 ================================================================================
Jim Hahn12fab622019-01-14 14:30:46 -05005 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Pamela Dragoshd548b612018-04-16 11:53:04 -04006 ================================================================================
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 -->
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040020<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">
21 <modelVersion>4.0.0</modelVersion>
liamfallondef0f112018-02-13 11:29:56 +000022
23 <parent>
24 <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
25 <artifactId>common</artifactId>
Pamela Dragoshc9920132019-05-23 16:32:55 -040026 <version>1.4.2-SNAPSHOT</version>
liamfallondef0f112018-02-13 11:29:56 +000027 </parent>
28
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040029 <artifactId>guard</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000030
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -040031 <dependencies>
liamfallondef0f112018-02-13 11:29:56 +000032 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +000033 <groupId>org.onap.policy.models.policy-models-interactions</groupId>
34 <artifactId>model-yaml</artifactId>
35 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +000036 <scope>provided</scope>
37 </dependency>
38 <dependency>
Jim Hahn9f778302019-02-08 10:15:45 -050039 <groupId>com.att.research.xacml</groupId>
40 <artifactId>xacml-pdp</artifactId>
41 <version>1.0.2</version>
42 <exclusions>
43 <!--
44 Exclude jars with an older version or that are insecure and not needed.
45 -->
46 <exclusion>
47 <artifactId>commons-codec</artifactId>
48 <groupId>commons-codec</groupId>
49 </exclusion>
50 <exclusion>
51 <artifactId>commons-logging</artifactId>
52 <groupId>commons-logging</groupId>
53 </exclusion>
54 <exclusion>
55 <artifactId>guava</artifactId>
56 <groupId>com.google.guava</groupId>
57 </exclusion>
58 <exclusion>
59 <artifactId>commons-lang3</artifactId>
60 <groupId>org.apache.commons</groupId>
61 </exclusion>
62 <exclusion>
63 <artifactId>jackson-databind</artifactId>
64 <groupId>com.fasterxml.jackson.core</groupId>
65 </exclusion>
66 <exclusion>
67 <artifactId>commons-collections</artifactId>
68 <groupId>commons-collections</groupId>
69 </exclusion>
70 <exclusion>
71 <artifactId>commons-lang</artifactId>
72 <groupId>commons-lang</groupId>
73 </exclusion>
74 </exclusions>
liamfallondef0f112018-02-13 11:29:56 +000075 </dependency>
76 <dependency>
77 <groupId>junit</groupId>
78 <artifactId>junit</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000079 <scope>test</scope>
80 </dependency>
81 <dependency>
82 <groupId>commons-io</groupId>
83 <artifactId>commons-io</artifactId>
84 <version>2.5</version>
85 <scope>provided</scope>
86 </dependency>
87 <dependency>
88 <groupId>org.apache.httpcomponents</groupId>
89 <artifactId>httpclient</artifactId>
liamfallondef0f112018-02-13 11:29:56 +000090 <scope>provided</scope>
91 </dependency>
92 <dependency>
93 <groupId>org.drools</groupId>
94 <artifactId>drools-core</artifactId>
95 <version>6.5.0.Final</version>
96 <scope>provided</scope>
97 </dependency>
98 <dependency>
99 <groupId>org.eclipse.persistence</groupId>
100 <artifactId>org.eclipse.persistence.jpa</artifactId>
liamfallondef0f112018-02-13 11:29:56 +0000101 <scope>provided</scope>
102 </dependency>
103 <dependency>
mmise87b2f72018-07-23 12:22:07 +0100104 <groupId>org.onap.policy.common</groupId>
105 <artifactId>policy-endpoints</artifactId>
ramvermae2b3a9c2018-10-25 11:59:09 +0100106 <version>${version.policy.common}</version>
mmise87b2f72018-07-23 12:22:07 +0100107 <scope>provided</scope>
108 </dependency>
109 <dependency>
liamfallondef0f112018-02-13 11:29:56 +0000110 <groupId>org.onap.policy.drools-pdp</groupId>
111 <artifactId>policy-management</artifactId>
ramvermae2b3a9c2018-10-25 11:59:09 +0100112 <version>${version.policy.drools-pdp}</version>
liamfallondef0f112018-02-13 11:29:56 +0000113 <scope>provided</scope>
114 </dependency>
115 <dependency>
shaoqiue55d2562019-04-02 12:33:04 +0000116 <groupId>org.onap.policy.models.policy-models-interactions</groupId>
liamfallondef0f112018-02-13 11:29:56 +0000117 <artifactId>simulators</artifactId>
shaoqiue55d2562019-04-02 12:33:04 +0000118 <version>${policy.models.version}</version>
liamfallondef0f112018-02-13 11:29:56 +0000119 <scope>test</scope>
120 </dependency>
121 <dependency>
Pamela Dragosh00224882019-05-03 08:40:34 -0400122 <groupId>org.onap.policy.models</groupId>
123 <artifactId>policy-models-decisions</artifactId>
124 <version>${policy.models.version}</version>
125 </dependency>
126 <dependency>
127 <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
128 <artifactId>rest</artifactId>
129 <version>${policy.models.version}</version>
130 </dependency>
131 <dependency>
liamfallondef0f112018-02-13 11:29:56 +0000132 <groupId>org.mockito</groupId>
133 <artifactId>mockito-core</artifactId>
134 <version>2.13.0</version>
135 <scope>test</scope>
136 </dependency>
137 <dependency>
138 <groupId>com.h2database</groupId>
139 <artifactId>h2</artifactId>
liamfallondef0f112018-02-13 11:29:56 +0000140 <scope>test</scope>
141 </dependency>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -0400142 </dependencies>
Pamela Dragosha24a9852018-09-21 20:08:11 -0400143 <build>
144 <plugins>
145 <plugin>
146 <artifactId>maven-checkstyle-plugin</artifactId>
147 <executions>
148 <execution>
149 <id>onap-java-style</id>
150 <goals>
151 <goal>check</goal>
152 </goals>
153 <phase>process-sources</phase>
154 <configuration>
155 <!-- Use Google Java Style Guide:
156 https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
157 with minor changes -->
158 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
159 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
Pamela Dragosh1c32e0c2018-09-26 13:53:38 -0400160 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
Pamela Dragosha24a9852018-09-21 20:08:11 -0400161 <includeResources>true</includeResources>
162 <includeTestSourceDirectory>true</includeTestSourceDirectory>
163 <includeTestResources>true</includeTestResources>
164 <excludes>
165 </excludes>
166 <consoleOutput>true</consoleOutput>
167 <failsOnViolation>true</failsOnViolation>
168 <violationSeverity>warning</violationSeverity>
169 </configuration>
170 </execution>
171 </executions>
172 <dependencies>
173 <dependency>
174 <groupId>org.onap.oparent</groupId>
175 <artifactId>checkstyle</artifactId>
176 <version>${oparent.version}</version>
177 <scope>compile</scope>
178 </dependency>
179 </dependencies>
180 </plugin>
181 </plugins>
182 </build>
Gao, Chenfei (cg287m)68377162017-06-22 14:48:41 -0400183</project>