Merge "decouple topics from controllers"
[policy/drools-applications.git] / controlloop / common / eventmanager / pom.xml
1 <!--
2   ============LICENSE_START=======================================================
3   eventmanager
4   ================================================================================
5   Copyright (C) 2017-2020 AT&T Intellectual Property. All rights reserved.
6   Modifications Copyright (C) 2019 Nordix Foundation.
7   Modifications Copyright (C) 2019-2020 Bell Canada.
8   ================================================================================
9   Licensed under the Apache License, Version 2.0 (the "License");
10   you may not use this file except in compliance with the License.
11   You may obtain a copy of the License at
12
13        http://www.apache.org/licenses/LICENSE-2.0
14
15   Unless required by applicable law or agreed to in writing, software
16   distributed under the License is distributed on an "AS IS" BASIS,
17   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18   See the License for the specific language governing permissions and
19   limitations under the License.
20   ============LICENSE_END=========================================================
21   -->
22
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
25     <modelVersion>4.0.0</modelVersion>
26
27     <parent>
28         <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
29         <artifactId>drools-applications-common</artifactId>
30         <version>1.6.0-SNAPSHOT</version>
31     </parent>
32
33     <artifactId>eventmanager</artifactId>
34
35     <dependencies>
36         <dependency>
37             <groupId>org.eclipse.persistence</groupId>
38             <artifactId>org.eclipse.persistence.jpa</artifactId>
39             <scope>provided</scope>
40         </dependency>
41         <dependency>
42             <groupId>commons-io</groupId>
43             <artifactId>commons-io</artifactId>
44             <version>2.5</version>
45             <scope>provided</scope>
46         </dependency>
47         <dependency>
48             <!-- less than 1.9.4 has security vulnerabilities -->
49             <groupId>commons-beanutils</groupId>
50             <artifactId>commons-beanutils</artifactId>
51         </dependency>
52         <dependency>
53             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
54             <artifactId>actorServiceProvider</artifactId>
55             <version>${policy.models.version}</version>
56             <scope>provided</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
60             <artifactId>actor.sdnr</artifactId>
61             <version>${policy.models.version}</version>
62             <scope>provided</scope>
63         </dependency>
64         <dependency>
65             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
66             <artifactId>actor.appc</artifactId>
67             <version>${policy.models.version}</version>
68             <scope>provided</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
72             <artifactId>actor.so</artifactId>
73             <version>${policy.models.version}</version>
74             <scope>provided</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
78             <artifactId>actor.vfc</artifactId>
79             <version>${policy.models.version}</version>
80             <scope>provided</scope>
81         </dependency>
82         <dependency>
83             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
84             <artifactId>actor.sdnc</artifactId>
85             <version>${policy.models.version}</version>
86             <scope>provided</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
90             <artifactId>actor.appclcm</artifactId>
91             <version>${policy.models.version}</version>
92             <scope>provided</scope>
93         </dependency>
94         <dependency>
95             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
96             <artifactId>actor.cds</artifactId>
97             <version>${policy.models.version}</version>
98             <scope>provided</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
102             <artifactId>database</artifactId>
103             <version>${project.version}</version>
104         </dependency>
105         <dependency>
106             <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
107             <artifactId>guard</artifactId>
108             <version>${project.version}</version>
109             <scope>provided</scope>
110         </dependency>
111         <dependency>
112             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
113             <artifactId>events</artifactId>
114             <version>${policy.models.version}</version>
115             <scope>provided</scope>
116         </dependency>
117         <dependency>
118             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
119             <artifactId>sdnr</artifactId>
120             <version>${policy.models.version}</version>
121             <scope>provided</scope>
122         </dependency>
123         <dependency>
124             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
125             <artifactId>appc</artifactId>
126             <version>${policy.models.version}</version>
127             <scope>provided</scope>
128         </dependency>
129         <dependency>
130             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
131             <artifactId>vfc</artifactId>
132             <version>${policy.models.version}</version>
133             <scope>provided</scope>
134         </dependency>
135         <dependency>
136             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
137             <artifactId>sdnc</artifactId>
138             <version>${policy.models.version}</version>
139             <scope>provided</scope>
140         </dependency>
141         <dependency>
142             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
143             <artifactId>appclcm</artifactId>
144             <version>${policy.models.version}</version>
145             <scope>provided</scope>
146         </dependency>
147         <dependency>
148             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
149             <artifactId>cds</artifactId>
150             <version>${policy.models.version}</version>
151             <scope>provided</scope>
152         </dependency>
153         <dependency>
154             <groupId>org.onap.ccsdk.cds.components</groupId>
155             <artifactId>proto-definition</artifactId>
156         </dependency>
157         <dependency>
158             <groupId>com.google.code.gson</groupId>
159             <artifactId>gson</artifactId>
160             <scope>provided</scope>
161         </dependency>
162         <dependency>
163             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
164             <artifactId>sdc</artifactId>
165             <version>${policy.models.version}</version>
166             <scope>provided</scope>
167         </dependency>
168         <dependency>
169             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
170             <artifactId>aai</artifactId>
171             <version>${policy.models.version}</version>
172             <scope>provided</scope>
173         </dependency>
174         <dependency>
175             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
176             <artifactId>so</artifactId>
177             <version>${policy.models.version}</version>
178             <scope>provided</scope>
179         </dependency>
180         <dependency>
181             <groupId>org.apache.httpcomponents</groupId>
182             <artifactId>httpclient</artifactId>
183             <scope>provided</scope>
184         </dependency>
185         <dependency>
186             <groupId>org.onap.policy.common</groupId>
187             <artifactId>policy-endpoints</artifactId>
188             <version>${version.policy.common}</version>
189             <scope>provided</scope>
190         </dependency>
191         <dependency>
192             <groupId>org.onap.policy.drools-pdp</groupId>
193             <artifactId>policy-management</artifactId>
194             <version>${version.policy.drools-pdp}</version>
195             <scope>provided</scope>
196         </dependency>
197         <dependency>
198             <groupId>org.onap.policy.common</groupId>
199             <artifactId>utils-test</artifactId>
200             <version>${version.policy.common}</version>
201             <scope>test</scope>
202         </dependency>
203         <dependency>
204             <groupId>org.onap.policy.models.policy-models-interactions</groupId>
205             <artifactId>simulators</artifactId>
206             <version>${policy.models.version}</version>
207             <scope>test</scope>
208         </dependency>
209         <dependency>
210             <groupId>org.onap.policy.models</groupId>
211             <artifactId>policy-models-examples</artifactId>
212             <version>${policy.models.version}</version>
213             <scope>test</scope>
214         </dependency>
215         <dependency>
216             <groupId>com.h2database</groupId>
217             <artifactId>h2</artifactId>
218             <scope>test</scope>
219         </dependency>
220         <dependency>
221             <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
222             <artifactId>domains</artifactId>
223             <version>1.6.0-SNAPSHOT</version>
224         </dependency>
225     </dependencies>
226     <build>
227         <plugins>
228             <plugin>
229                 <artifactId>maven-checkstyle-plugin</artifactId>
230                 <executions>
231                     <execution>
232                         <id>onap-java-style</id>
233                         <goals>
234                             <goal>check</goal>
235                         </goals>
236                         <phase>process-sources</phase>
237                         <configuration>
238                             <!-- Use Google Java Style Guide:
239                             https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
240                             with minor changes -->
241                             <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
242                             <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
243                             <sourceDirectories>${project.build.sourceDirectory}</sourceDirectories>
244                             <includeResources>true</includeResources>
245                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
246                             <includeTestResources>true</includeTestResources>
247                             <excludes>
248                             </excludes>
249                             <consoleOutput>true</consoleOutput>
250                             <failsOnViolation>true</failsOnViolation>
251                             <violationSeverity>warning</violationSeverity>
252                         </configuration>
253                     </execution>
254                 </executions>
255                 <dependencies>
256                     <dependency>
257                         <groupId>org.onap.oparent</groupId>
258                         <artifactId>checkstyle</artifactId>
259                         <version>${oparent.version}</version>
260                         <scope>compile</scope>
261                     </dependency>
262                 </dependencies>
263             </plugin>
264         </plugins>
265     </build>
266 </project>