blob: d96480a4f836a7d27810f19de297a5c98e93d501 [file] [log] [blame]
Anand36bcd562018-01-04 19:35:51 -05001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnelleb27ca32018-01-12 10:17:57 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClungfb3eec22018-06-14 10:17:19 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnelleb27ca32018-01-12 10:17:57 -06007 Copyright (C) 2017 Amdocs
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=========================================================
Skip Wonnelleb27ca32018-01-12 10:17:57 -060021 -->
Anand36bcd562018-01-04 19:35:51 -050022<project xmlns="http://maven.apache.org/POM/4.0.0"
23 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 <parent>
27 <groupId>org.onap.appc</groupId>
28 <artifactId>appc</artifactId>
Patrick Brady84d0a252018-05-22 10:42:55 -070029 <version>1.4.0-SNAPSHOT</version>
Anand36bcd562018-01-04 19:35:51 -050030 </parent>
31
32 <artifactId>appc-test-dependencies</artifactId>
33 <groupId>org.onap.appc</groupId>
Patrick Brady84d0a252018-05-22 10:42:55 -070034 <version>1.4.0-SNAPSHOT</version>
Anand36bcd562018-01-04 19:35:51 -050035 <packaging>pom</packaging>
36
37 <properties>
38 <licenseDir>${project.parent.basedir}</licenseDir>
39 </properties>
40
41 <dependencies>
42 <dependency>
43 <groupId>junit</groupId>
44 <artifactId>junit</artifactId>
45 <version>4.12</version>
46 </dependency>
47 <dependency>
48 <groupId>org.mockito</groupId>
49 <artifactId>mockito-core</artifactId>
50 </dependency>
51 <dependency>
52 <groupId>org.powermock</groupId>
53 <artifactId>powermock-api-mockito</artifactId>
54 </dependency>
55 <dependency>
56 <groupId>org.powermock</groupId>
57 <artifactId>powermock-module-junit4</artifactId>
58 <version>1.6.2</version>
59 </dependency>
60 <dependency>
61 <groupId>com.h2database</groupId>
62 <artifactId>h2</artifactId>
63 <version>1.4.196</version>
64 </dependency>
65 </dependencies>
Skip Wonnelleb27ca32018-01-12 10:17:57 -060066</project>