Use dependency management for cds proto-definition artifact
[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   Modifications Copyright (C) 2019 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24   <modelVersion>4.0.0</modelVersion>
25
26   <parent>
27     <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
28     <artifactId>common</artifactId>
29     <version>1.6.0-SNAPSHOT</version>
30   </parent>
31
32   <artifactId>eventmanager</artifactId>
33
34   <dependencies>
35     <dependency>
36       <groupId>org.eclipse.persistence</groupId>
37       <artifactId>org.eclipse.persistence.jpa</artifactId>
38       <scope>provided</scope>
39     </dependency>
40     <dependency>
41       <groupId>commons-io</groupId>
42       <artifactId>commons-io</artifactId>
43       <version>2.5</version>
44       <scope>provided</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
48       <artifactId>actorServiceProvider</artifactId>
49       <version>${policy.models.version}</version>
50       <scope>provided</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
54       <artifactId>actor.sdnr</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.appc</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.so</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.vfc</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.sdnc</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.appclcm</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.cds</artifactId>
91       <version>${policy.models.version}</version>
92       <scope>provided</scope>
93     </dependency>
94     <dependency>
95       <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
96       <artifactId>database</artifactId>
97       <version>${project.version}</version>
98     </dependency>
99     <dependency>
100       <groupId>org.onap.policy.drools-applications.controlloop.common</groupId>
101       <artifactId>guard</artifactId>
102       <version>${project.version}</version>
103       <scope>provided</scope>
104     </dependency>
105     <dependency>
106       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
107       <artifactId>events</artifactId>
108       <version>${policy.models.version}</version>
109       <scope>provided</scope>
110     </dependency>
111     <dependency>
112       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
113       <artifactId>sdnr</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>appc</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>vfc</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>sdnc</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>appclcm</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>cds</artifactId>
144       <version>${policy.models.version}</version>
145       <scope>provided</scope>
146     </dependency>
147     <dependency>
148       <groupId>junit</groupId>
149       <artifactId>junit</artifactId>
150       <scope>test</scope>
151     </dependency>
152     <dependency>
153       <groupId>org.powermock</groupId>
154       <artifactId>powermock-api-mockito</artifactId>
155       <scope>test</scope>
156     </dependency>
157     <dependency>
158       <groupId>org.assertj</groupId>
159       <artifactId>assertj-core</artifactId>
160       <scope>test</scope>
161     </dependency>
162     <dependency>
163       <groupId>com.google.code.gson</groupId>
164       <artifactId>gson</artifactId>
165       <scope>provided</scope>
166     </dependency>
167     <dependency>
168       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
169       <artifactId>sdc</artifactId>
170       <version>${policy.models.version}</version>
171       <scope>provided</scope>
172     </dependency>
173     <dependency>
174       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
175       <artifactId>aai</artifactId>
176       <version>${policy.models.version}</version>
177       <scope>provided</scope>
178     </dependency>
179     <dependency>
180       <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
181       <artifactId>so</artifactId>
182       <version>${policy.models.version}</version>
183       <scope>provided</scope>
184     </dependency>
185     <dependency>
186       <groupId>org.apache.httpcomponents</groupId>
187       <artifactId>httpclient</artifactId>
188       <scope>provided</scope>
189     </dependency>
190     <dependency>
191       <groupId>org.onap.policy.common</groupId>
192       <artifactId>policy-endpoints</artifactId>
193       <version>${version.policy.common}</version>
194       <scope>provided</scope>
195     </dependency>
196     <dependency>
197       <groupId>org.onap.policy.drools-pdp</groupId>
198       <artifactId>policy-management</artifactId>
199       <version>${version.policy.drools-pdp}</version>
200       <scope>provided</scope>
201     </dependency>
202     <dependency>
203       <groupId>org.onap.policy.common</groupId>
204       <artifactId>utils-test</artifactId>
205       <version>${version.policy.common}</version>
206       <scope>test</scope>
207     </dependency>
208     <dependency>
209       <groupId>org.onap.policy.models.policy-models-interactions</groupId>
210       <artifactId>simulators</artifactId>
211       <version>${policy.models.version}</version>
212       <scope>test</scope>
213     </dependency>
214     <dependency>
215       <groupId>com.h2database</groupId>
216       <artifactId>h2</artifactId>
217       <scope>test</scope>
218     </dependency>
219   </dependencies>
220     <build>
221         <plugins>
222             <plugin>
223                 <artifactId>maven-checkstyle-plugin</artifactId>
224                 <executions>
225                     <execution>
226                         <id>onap-java-style</id>
227                         <goals>
228                             <goal>check</goal>
229                         </goals>
230                         <phase>process-sources</phase>
231                         <configuration>
232                             <!-- Use Google Java Style Guide:
233                             https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
234                             with minor changes -->
235                             <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
236                             <!-- <sourceDirectory> is needed so that checkstyle ignores the generated sources directory -->
237                             <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
238                             <includeResources>true</includeResources>
239                             <includeTestSourceDirectory>true</includeTestSourceDirectory>
240                             <includeTestResources>true</includeTestResources>
241                             <excludes>
242                             </excludes>
243                             <consoleOutput>true</consoleOutput>
244                             <failsOnViolation>true</failsOnViolation>
245                             <violationSeverity>warning</violationSeverity>
246                         </configuration>
247                     </execution>
248                 </executions>
249                 <dependencies>
250                     <dependency>
251                         <groupId>org.onap.oparent</groupId>
252                         <artifactId>checkstyle</artifactId>
253                         <version>${oparent.version}</version>
254                         <scope>compile</scope>
255                     </dependency>
256                 </dependencies>
257             </plugin>
258         </plugins>
259     </build>
260 </project>