Merge "Update-config simulator prop. with mvn assembly."
[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.7.1-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             <scope>provided</scope>
45         </dependency>
46         <dependency>
47             <!-- less than 1.9.4 has security vulnerabilities -->
48             <groupId>commons-beanutils</groupId>
49             <artifactId>commons-beanutils</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
53             <artifactId>actorServiceProvider</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.sdnr</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.appc</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.guard</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.so</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.vfc</artifactId>
84             <version>${policy.models.version}</version>
85             <scope>provided</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
89             <artifactId>actor.sdnc</artifactId>
90             <version>${policy.models.version}</version>
91             <scope>provided</scope>
92         </dependency>
93         <dependency>
94             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
95             <artifactId>actor.appclcm</artifactId>
96             <version>${policy.models.version}</version>
97             <scope>provided</scope>
98         </dependency>
99         <dependency>
100             <groupId>org.onap.policy.models.policy-models-interactions.model-actors</groupId>
101             <artifactId>actor.cds</artifactId>
102             <version>${policy.models.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>guard</artifactId>
126             <version>${policy.models.version}</version>
127         </dependency>
128         <dependency>
129             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
130             <artifactId>vfc</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>sdnc</artifactId>
137             <version>${policy.models.version}</version>
138             <scope>provided</scope>
139         </dependency>
140         <dependency>
141             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
142             <artifactId>appclcm</artifactId>
143             <version>${policy.models.version}</version>
144             <scope>provided</scope>
145         </dependency>
146         <dependency>
147             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
148             <artifactId>cds</artifactId>
149             <version>${policy.models.version}</version>
150             <scope>provided</scope>
151         </dependency>
152         <dependency>
153             <groupId>org.onap.ccsdk.cds.components</groupId>
154             <artifactId>proto-definition</artifactId>
155         </dependency>
156         <dependency>
157             <groupId>com.google.code.gson</groupId>
158             <artifactId>gson</artifactId>
159             <scope>provided</scope>
160         </dependency>
161         <dependency>
162             <groupId>org.onap.policy.models.policy-models-interactions.model-impl</groupId>
163             <artifactId>sdc</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>aai</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>so</artifactId>
176             <version>${policy.models.version}</version>
177             <scope>provided</scope>
178         </dependency>
179         <dependency>
180             <groupId>org.apache.httpcomponents</groupId>
181             <artifactId>httpclient</artifactId>
182             <scope>provided</scope>
183         </dependency>
184         <dependency>
185             <groupId>org.onap.policy.common</groupId>
186             <artifactId>policy-endpoints</artifactId>
187             <version>${version.policy.common}</version>
188             <scope>provided</scope>
189         </dependency>
190         <dependency>
191             <groupId>org.onap.policy.drools-pdp</groupId>
192             <artifactId>policy-management</artifactId>
193             <version>${version.policy.drools-pdp}</version>
194             <scope>provided</scope>
195         </dependency>
196         <dependency>
197             <groupId>org.onap.policy.drools-pdp</groupId>
198             <artifactId>policy-domains</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>org.onap.policy.models</groupId>
216             <artifactId>policy-models-examples</artifactId>
217             <version>${policy.models.version}</version>
218             <scope>test</scope>
219         </dependency>
220         <dependency>
221             <groupId>com.h2database</groupId>
222             <artifactId>h2</artifactId>
223             <scope>test</scope>
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>