blob: 6466895c820951790e94e4891ad942d6e5099b54 [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>
liamfallonefdaa0d2018-08-03 16:12:01 +010040 <groupId>org.onap.policy.common</groupId>
41 <artifactId>utils</artifactId>
42 </dependency>
43 <dependency>
waqas.ikram2816ea62018-06-27 16:16:42 +010044 <groupId>org.onap.policy.apex-pdp.core</groupId>
45 <artifactId>core-engine</artifactId>
46 <version>${project.version}</version>
47 </dependency>
48 <dependency>
49 <groupId>org.onap.policy.apex-pdp.core</groupId>
50 <artifactId>core-deployment</artifactId>
51 <version>${project.version}</version>
52 </dependency>
53 <dependency>
54 <groupId>org.onap.policy.apex-pdp.context</groupId>
waqas.ikram3f300de2018-07-05 18:57:02 +010055 <artifactId>context-test-utils</artifactId>
waqas.ikram2816ea62018-06-27 16:16:42 +010056 <version>${project.version}</version>
57 <scope>test</scope>
58 </dependency>
59 <dependency>
liamfallonb109c212018-07-18 11:23:20 +010060 <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-schema</groupId>
61 <artifactId>plugins-context-schema-avro</artifactId>
waqas.ikram2816ea62018-06-27 16:16:42 +010062 <version>${project.version}</version>
63 <scope>test</scope>
64 </dependency>
65 <dependency>
66 <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId>
67 <artifactId>plugins-executor-mvel</artifactId>
68 <version>${project.version}</version>
69 <scope>test</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.onap.policy.apex-pdp.plugins.plugins-executor</groupId>
73 <artifactId>plugins-executor-javascript</artifactId>
74 <version>${project.version}</version>
75 <scope>test</scope>
76 </dependency>
77 <dependency>
liamfallonb109c212018-07-18 11:23:20 +010078 <groupId>org.onap.policy.apex-pdp.plugins.plugins-context.plugins-context-distribution</groupId>
79 <artifactId>plugins-context-distribution-infinispan</artifactId>
waqas.ikram2816ea62018-06-27 16:16:42 +010080 <version>${project.version}</version>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
85 <artifactId>plugins-event-carrier-kafka</artifactId>
86 <version>${project.version}</version>
87 <scope>test</scope>
88 </dependency>
89 <dependency>
90 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
91 <artifactId>plugins-event-carrier-websocket</artifactId>
92 <version>${project.version}</version>
93 <scope>test</scope>
94 </dependency>
95 <dependency>
96 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
97 <artifactId>plugins-event-carrier-jms</artifactId>
98 <version>${project.version}</version>
99 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
103 <artifactId>plugins-event-carrier-restclient</artifactId>
104 <version>${project.version}</version>
105 <scope>test</scope>
106 </dependency>
107 <dependency>
108 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
109 <artifactId>plugins-event-carrier-restserver</artifactId>
110 <version>${project.version}</version>
111 <scope>test</scope>
112 </dependency>
113 <dependency>
114 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-carrier</groupId>
115 <artifactId>plugins-event-carrier-restrequestor</artifactId>
116 <version>${project.version}</version>
117 <scope>test</scope>
118 </dependency>
119 <dependency>
120 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-protocol</groupId>
121 <artifactId>plugins-event-protocol-xml</artifactId>
122 <version>${project.version}</version>
123 <scope>test</scope>
124 </dependency>
125 <dependency>
126 <groupId>org.onap.policy.apex-pdp.plugins.plugins-event.plugins-event-protocol</groupId>
127 <artifactId>plugins-event-protocol-jms</artifactId>
128 <version>${project.version}</version>
129 <scope>test</scope>
130 </dependency>
131 <dependency>
132 <groupId>org.onap.policy.apex-pdp.auth</groupId>
133 <artifactId>cli-editor</artifactId>
134 <version>${project.version}</version>
135 <scope>test</scope>
136 </dependency>
137 <dependency>
138 <groupId>org.onap.policy.apex-pdp.testsuites.integration</groupId>
139 <artifactId>integration-common</artifactId>
140 <version>${project.version}</version>
141 <scope>test</scope>
142 </dependency>
143 <dependency>
144 <groupId>org.apache.kafka</groupId>
liamfallone13ff2c2018-09-14 23:05:56 +0100145 <artifactId>kafka_2.12</artifactId>
liamfallon4d6fc382018-06-27 12:50:17 +0100146 <version>${version.kafka}</version>
waqas.ikram2816ea62018-06-27 16:16:42 +0100147 <scope>test</scope>
waqas.ikram2816ea62018-06-27 16:16:42 +0100148 </dependency>
149 <dependency>
liamfallone13ff2c2018-09-14 23:05:56 +0100150 <groupId>com.salesforce.kafka.test</groupId>
151 <artifactId>kafka-junit4</artifactId>
152 <version>3.0.1</version>
waqas.ikram2816ea62018-06-27 16:16:42 +0100153 <scope>test</scope>
waqas.ikram2816ea62018-06-27 16:16:42 +0100154 </dependency>
155 <dependency>
156 <groupId>org.apache.activemq.tooling</groupId>
157 <artifactId>activemq-junit</artifactId>
158 <version>${activemq-version}</version>
159 <scope>test</scope>
160 </dependency>
161 <dependency>
162 <groupId>org.apache.activemq</groupId>
163 <artifactId>activemq-broker</artifactId>
164 <version>${activemq-version}</version>
165 <scope>test</scope>
166 </dependency>
167 <dependency>
168 <groupId>org.apache.activemq</groupId>
169 <artifactId>activemq-jaas</artifactId>
170 <version>${activemq-version}</version>
171 <scope>test</scope>
172 </dependency>
173
174 <dependency>
175 <groupId>org.glassfish.jersey.core</groupId>
176 <artifactId>jersey-client</artifactId>
liamfallona40a3832018-07-06 09:41:40 +0100177 <version>${version.jersey}</version>
waqas.ikram2816ea62018-06-27 16:16:42 +0100178 </dependency>
179 <dependency>
180 <groupId>org.glassfish.jersey.containers</groupId>
181 <artifactId>jersey-container-grizzly2-http</artifactId>
liamfallona40a3832018-07-06 09:41:40 +0100182 <version>${version.jersey}</version>
waqas.ikram2816ea62018-06-27 16:16:42 +0100183 <scope>test</scope>
184 </dependency>
185 <dependency>
186 <groupId>org.glassfish.jersey.containers</groupId>
187 <artifactId>jersey-container-servlet-core</artifactId>
liamfallona40a3832018-07-06 09:41:40 +0100188 <version>${version.jersey}</version>
waqas.ikram2816ea62018-06-27 16:16:42 +0100189 </dependency>
190 </dependencies>
191
192 <build>
193 <plugins>
194 <plugin>
195 <groupId>org.apache.maven.plugins</groupId>
196 <artifactId>maven-surefire-plugin</artifactId>
197 <configuration>
198 <forkMode>always</forkMode>
199 </configuration>
200 </plugin>
201 </plugins>
202 </build>
203
Dinh Danh Lea4a99222018-08-23 00:00:00 +0100204 <profiles>
205 <profile>
206 <id>apexSite</id>
207 <activation>
208 <property>
209 <name>apexSite</name>
210 </property>
211 </activation>
212 <distributionManagement>
213 <site>
214 <id>${project.artifactId}-site</id>
215 <url>${apex.adsite.prefix}/modules/testsuites/${project.parent.artifactId}/${project.artifactId}/</url>
216 </site>
217 </distributionManagement>
218 </profile>
219 </profiles>
liamfallona41c8772018-09-05 15:46:31 +0100220</project>