blob: 4b0adde9763a3f852a47bbcc472b22d5b8191636 [file] [log] [blame]
waqas.ikram2816ea62018-06-27 16:16:42 +01001<!--
2 ============LICENSE_START=======================================================
3 Copyright (C) 2018 Ericsson. All rights reserved.
4 ================================================================================
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16
17 SPDX-License-Identifier: Apache-2.0
18 ============LICENSE_END=========================================================
19-->
20
21<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22 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 <parent>
25 <groupId>org.onap.policy.apex-pdp.testsuites.integration</groupId>
26 <artifactId>integration</artifactId>
27 <version>2.0.0-SNAPSHOT</version>
28 </parent>
29
30 <artifactId>integration-uservice-test</artifactId>
31 <name>${project.artifactId}</name>
32 <description>Integration tests for Apex microservices</description>
33
34 <properties>
35 <activemq-version>5.15.4</activemq-version>
36 </properties>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.onap.policy.apex-pdp.core</groupId>
41 <artifactId>core-engine</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>org.onap.policy.apex-pdp.core</groupId>
46 <artifactId>core-deployment</artifactId>
47 <version>${project.version}</version>
48 </dependency>
49 <dependency>
50 <groupId>org.onap.policy.apex-pdp.context</groupId>
51 <artifactId>context-test</artifactId>
52 <version>${project.version}</version>
53 <scope>test</scope>
54 </dependency>
55 <dependency>
56 <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.context-schema</groupId>
57 <artifactId>context-schema-avro</artifactId>
58 <version>${project.version}</version>
59 <scope>test</scope>
60 </dependency>
61 <dependency>
62 <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId>
63 <artifactId>plugins-executor-mvel</artifactId>
64 <version>${project.version}</version>
65 <scope>test</scope>
66 </dependency>
67 <dependency>
68 <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId>
69 <artifactId>plugins-executor-javascript</artifactId>
70 <version>${project.version}</version>
71 <scope>test</scope>
72 </dependency>
73 <dependency>
74 <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.context-distribution</groupId>
75 <artifactId>context-distribution-infinispan</artifactId>
76 <version>${project.version}</version>
77 <scope>test</scope>
78 </dependency>
79 <dependency>
80 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
81 <artifactId>plugins-event-carrier-kafka</artifactId>
82 <version>${project.version}</version>
83 <scope>test</scope>
84 </dependency>
85 <dependency>
86 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
87 <artifactId>plugins-event-carrier-websocket</artifactId>
88 <version>${project.version}</version>
89 <scope>test</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
93 <artifactId>plugins-event-carrier-jms</artifactId>
94 <version>${project.version}</version>
95 <scope>test</scope>
96 </dependency>
97 <dependency>
98 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
99 <artifactId>plugins-event-carrier-restclient</artifactId>
100 <version>${project.version}</version>
101 <scope>test</scope>
102 </dependency>
103 <dependency>
104 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
105 <artifactId>plugins-event-carrier-restserver</artifactId>
106 <version>${project.version}</version>
107 <scope>test</scope>
108 </dependency>
109 <dependency>
110 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
111 <artifactId>plugins-event-carrier-restrequestor</artifactId>
112 <version>${project.version}</version>
113 <scope>test</scope>
114 </dependency>
115 <dependency>
116 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-protocol</groupId>
117 <artifactId>plugins-event-protocol-xml</artifactId>
118 <version>${project.version}</version>
119 <scope>test</scope>
120 </dependency>
121 <dependency>
122 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-protocol</groupId>
123 <artifactId>plugins-event-protocol-jms</artifactId>
124 <version>${project.version}</version>
125 <scope>test</scope>
126 </dependency>
127 <dependency>
128 <groupId>org.onap.policy.apex-pdp.auth</groupId>
129 <artifactId>cli-editor</artifactId>
130 <version>${project.version}</version>
131 <scope>test</scope>
132 </dependency>
133 <dependency>
134 <groupId>org.onap.policy.apex-pdp.testsuites.integration</groupId>
135 <artifactId>integration-common</artifactId>
136 <version>${project.version}</version>
137 <scope>test</scope>
138 </dependency>
139 <dependency>
140 <groupId>org.apache.kafka</groupId>
141 <artifactId>kafka_2.11</artifactId>
liamfallon4d6fc382018-06-27 12:50:17 +0100142 <version>${version.kafka}</version>
waqas.ikram2816ea62018-06-27 16:16:42 +0100143 <scope>test</scope>
144 <exclusions>
145 <exclusion>
146 <groupId>org.slf4j</groupId>
147 <artifactId>slf4j-log4j12</artifactId>
148 </exclusion>
149 </exclusions>
150 </dependency>
151 <dependency>
152 <groupId>org.apache.kafka</groupId>
153 <artifactId>kafka_2.11</artifactId>
liamfallon4d6fc382018-06-27 12:50:17 +0100154 <version>${version.kafka}</version>
waqas.ikram2816ea62018-06-27 16:16:42 +0100155 <classifier>test</classifier>
156 <scope>test</scope>
157 <exclusions>
158 <exclusion>
159 <groupId>org.slf4j</groupId>
160 <artifactId>slf4j-log4j12</artifactId>
161 </exclusion>
162 </exclusions>
163 </dependency>
164 <dependency>
165 <groupId>org.apache.kafka</groupId>
166 <artifactId>kafka-clients</artifactId>
liamfallon4d6fc382018-06-27 12:50:17 +0100167 <version>${version.kafka}</version>
waqas.ikram2816ea62018-06-27 16:16:42 +0100168 <classifier>test</classifier>
169 <scope>test</scope>
170 <exclusions>
171 <exclusion>
172 <groupId>org.slf4j</groupId>
173 <artifactId>slf4j-log4j12</artifactId>
174 </exclusion>
175 </exclusions>
176 </dependency>
177 <dependency>
178 <groupId>org.apache.activemq.tooling</groupId>
179 <artifactId>activemq-junit</artifactId>
180 <version>${activemq-version}</version>
181 <scope>test</scope>
182 </dependency>
183 <dependency>
184 <groupId>org.apache.activemq</groupId>
185 <artifactId>activemq-broker</artifactId>
186 <version>${activemq-version}</version>
187 <scope>test</scope>
188 </dependency>
189 <dependency>
190 <groupId>org.apache.activemq</groupId>
191 <artifactId>activemq-jaas</artifactId>
192 <version>${activemq-version}</version>
193 <scope>test</scope>
194 </dependency>
195
196 <dependency>
197 <groupId>org.glassfish.jersey.core</groupId>
198 <artifactId>jersey-client</artifactId>
liamfallona40a3832018-07-06 09:41:40 +0100199 <version>${version.jersey}</version>
waqas.ikram2816ea62018-06-27 16:16:42 +0100200 </dependency>
201 <dependency>
202 <groupId>org.glassfish.jersey.containers</groupId>
203 <artifactId>jersey-container-grizzly2-http</artifactId>
liamfallona40a3832018-07-06 09:41:40 +0100204 <version>${version.jersey}</version>
waqas.ikram2816ea62018-06-27 16:16:42 +0100205 <scope>test</scope>
206 </dependency>
207 <dependency>
208 <groupId>org.glassfish.jersey.containers</groupId>
209 <artifactId>jersey-container-servlet-core</artifactId>
liamfallona40a3832018-07-06 09:41:40 +0100210 <version>${version.jersey}</version>
waqas.ikram2816ea62018-06-27 16:16:42 +0100211 </dependency>
212 </dependencies>
213
214 <build>
215 <plugins>
216 <plugin>
217 <groupId>org.apache.maven.plugins</groupId>
218 <artifactId>maven-surefire-plugin</artifactId>
219 <configuration>
220 <forkMode>always</forkMode>
221 </configuration>
222 </plugin>
223 </plugins>
224 </build>
225
liamfallon4d6fc382018-06-27 12:50:17 +0100226</project>