Merge "Add debugging of REST call"
[policy/drools-applications.git] / controlloop / common / eventmanager / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   eventmanager
4   ================================================================================
5   Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
6   Modifications Copyright (C) 2019 Nordix Foundation.
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
22 <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">
23   <modelVersion>4.0.0</modelVersion>
24
25   <parent>
26     <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
27     <artifactId>common</artifactId>
28     <version>1.4.0-SNAPSHOT</version>
29   </parent>
30
31   <artifactId>eventmanager</artifactId>
32
33   <dependencies>
34     <dependency>
35       <groupId>org.eclipse.persistence</groupId>
36       <artifactId>org.eclipse.persistence.jpa</artifactId>
37       <scope>provided</scope>
38     </dependency>
39     <dependency>
40       <groupId>commons-io</groupId>
41       <artifactId>commons-io</artifactId>
42       <version>2.5</version>
43       <scope>provided</scope>
44     </dependency>
45     <dependency>
46       <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
47       <artifactId>actorServiceProvider</artifactId>
48       <version>${policy.models.version}</version>
49       <scope>provided</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
53       <artifactId>actor.sdnr</artifactId>
54       <version>${policy.models.version}</version>
55       <scope>provided</scope>
56     </dependency>
57     <dependency>
58       <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
59       <artifactId>actor.appc</artifactId>
60       <version>${policy.models.version}</version>
61       <scope>provided</scope>
62     </dependency>
63     <dependency>
64       <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
65       <artifactId>actor.so</artifactId>
66       <version>${policy.models.version}</version>
67       <scope>provided</scope>
68     </dependency>
69     <dependency>
70       <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
71       <artifactId>actor.vfc</artifactId>
72       <version>${policy.models.version}</version>
73       <scope>provided</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
77       <artifactId>actor.sdnc</artifactId>
78       <version>${policy.models.version}</version>
79       <scope>provided</scope>
80     </dependency>
81     <dependency>
82       <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
83       <artifactId>actor.appclcm</artifactId>
84       <version>${policy.models.version}</version>
85       <scope>provided</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
89       <artifactId>database</artifactId>
90       <version>${project.version}</version>
91     </dependency>
92     <dependency>
93       <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
94       <artifactId>guard</artifactId>
95       <version>${project.version}</version>
96       <scope>provided</scope>
97     </dependency>
98     <dependency>
99       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
100       <artifactId>events</artifactId>
101       <version>${policy.models.version}</version>
102       <scope>provided</scope>
103     </dependency>
104     <dependency>
105       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
106       <artifactId>sdnr</artifactId>
107       <version>${policy.models.version}</version>
108       <scope>provided</scope>
109     </dependency>
110     <dependency>
111       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
112       <artifactId>appc</artifactId>
113       <version>${policy.models.version}</version>
114       <scope>provided</scope>
115     </dependency>
116     <dependency>
117       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
118       <artifactId>vfc</artifactId>
119       <version>${policy.models.version}</version>
120       <scope>provided</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
124       <artifactId>sdnc</artifactId>
125       <version>${policy.models.version}</version>
126       <scope>provided</scope>
127     </dependency>
128     <dependency>
129       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
130       <artifactId>appclcm</artifactId>
131       <version>${policy.models.version}</version>
132       <scope>provided</scope>
133     </dependency>
134     <dependency>
135       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
136       <artifactId>trafficgenerator</artifactId>
137       <version>${policy.models.version}</version>
138       <scope>provided</scope>
139     </dependency>
140     <dependency>
141       <groupId>junit</groupId>
142       <artifactId>junit</artifactId>
143       <scope>test</scope>
144     </dependency>
145     <dependency>
146       <groupId>org.powermock</groupId>
147       <artifactId>powermock-api-mockito</artifactId>
148       <scope>test</scope>
149     </dependency>
150     <dependency>
151       <groupId>com.google.code.gson</groupId>
152       <artifactId>gson</artifactId>
153       <scope>provided</scope>
154     </dependency>
155     <dependency>
156       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
157       <artifactId>sdc</artifactId>
158       <version>${policy.models.version}</version>
159       <scope>provided</scope>
160     </dependency>
161     <dependency>
162       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
163       <artifactId>aai</artifactId>
164       <version>${policy.models.version}</version>
165       <scope>provided</scope>
166     </dependency>
167     <dependency>
168       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
169       <artifactId>so</artifactId>
170       <version>${policy.models.version}</version>
171       <scope>provided</scope>
172     </dependency>
173     <dependency>
174       <groupId>org.apache.httpcomponents</groupId>
175       <artifactId>httpclient</artifactId>
176       <scope>provided</scope>
177     </dependency>
178     <dependency>
179       <groupId>org.onap.policy.common</groupId>
180       <artifactId>policy-endpoints</artifactId>
181       <version>${version.policy.common}</version>
182       <scope>provided</scope>
183     </dependency>
184     <dependency>
185       <groupId>org.onap.policy.drools-pdp</groupId>
186       <artifactId>policy-management</artifactId>
187       <version>${version.policy.drools-pdp}</version>
188       <scope>provided</scope>
189     </dependency>
190     <dependency>
191       <groupId>org.onap.policy.common</groupId>
192       <artifactId>utils-test</artifactId>
193       <version>${version.policy.common}</version>
194       <scope>test</scope>
195     </dependency>
196     <dependency>
197       <groupId>org.onap.policy.models.policy-models-interactions</groupId>
198       <artifactId>simulators</artifactId>
199       <version>${policy.models.version}</version>
200       <scope>test</scope>
201     </dependency>
202     <dependency>
203       <groupId>com.h2database</groupId>
204       <artifactId>h2</artifactId>
205       <scope>test</scope>
206     </dependency>
207   </dependencies>
208     <build>
209         <plugins>
210             <plugin>
211                 <artifactId>maven-checkstyle-plugin</artifactId>
212                 <executions>
213                     <execution>
214                         <id>onap-java-style</id>
215                         <goals>
216                             <goal>check</goal>
217                         </goals>
218                         <phase>process-sources</phase>
219                         <configuration>
220                             <!-- Use Google Java Style Guide:
221                             https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
222                             with minor changes -->
223                             <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
224                             <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
225                             <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
226                             <includeResources>true</includeResources>
227                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
228                             <includeTestResources>true</includeTestResources>
229                             <excludes>
230                             </excludes>
231                             <consoleOutput>true</consoleOutput>
232                             <failsOnViolation>true</failsOnViolation>
233                             <violationSeverity>warning</violationSeverity>
234                         </configuration>
235                     </execution>
236                 </executions>
237                 <dependencies>
238                     <dependency>
239                         <groupId>org.onap.oparent</groupId>
240                         <artifactId>checkstyle</artifactId>
241                         <version>${oparent.version}</version>
242                         <scope>compile</scope>
243                     </dependency>
244                 </dependencies>
245             </plugin>
246         </plugins>
247     </build>
248 </project>