blob: 65f76512474e6e8376f4fa72b88a773c9f6d583c [file] [log] [blame]
Vodafone84a20982019-03-18 15:08:33 +05301<!--
2 ~ Copyright © 2019 iconectiv
3 ~
4 ~ Licensed under the Apache License, Version 2.0 (the "License");
5 ~ you may not use this file except in compliance with the License.
6 ~ You may obtain a copy of the License at
7 ~
8 ~ http://www.apache.org/licenses/LICENSE-2.0
9 ~
10 ~ Unless required by applicable law or agreed to in writing, software
11 ~ distributed under the License is distributed on an "AS IS" BASIS,
12 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 ~ See the License for the specific language governing permissions and
14 ~ limitations under the License.
15 -->
16
17<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
vasraza36531c2020-04-29 18:39:35 +010018 xmlns="http://maven.apache.org/POM/4.0.0"
19 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20 <modelVersion>4.0.0</modelVersion>
Vodafone84a20982019-03-18 15:08:33 +053021
vasraza36531c2020-04-29 18:39:35 +010022 <name>openecomp-sdc-externaltesting-impl</name>
23 <artifactId>openecomp-sdc-externaltesting-impl</artifactId>
Vodafone84a20982019-03-18 15:08:33 +053024
25
vasraza36531c2020-04-29 18:39:35 +010026 <parent>
27 <groupId>org.openecomp.sdc</groupId>
28 <artifactId>openecomp-sdc-lib</artifactId>
29 <version>1.7.0-SNAPSHOT</version>
30 <relativePath>../..</relativePath>
31 </parent>
Vodafone84a20982019-03-18 15:08:33 +053032
vasraza36531c2020-04-29 18:39:35 +010033 <dependencies>
34 <dependency>
35 <groupId>ch.qos.logback</groupId>
36 <artifactId>logback-classic</artifactId>
37 <version>${logback.version}</version>
38 </dependency>
39 <dependency>
40 <groupId>org.openecomp.sdc</groupId>
41 <artifactId>openecomp-sdc-logging-core</artifactId>
42 <version>${project.version}</version>
43 <scope>runtime</scope>
44 </dependency>
45 <dependency>
46 <groupId>org.openecomp.sdc</groupId>
47 <artifactId>openecomp-sdc-logging-api</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
51 <groupId>org.openecomp.sdc.core</groupId>
52 <artifactId>openecomp-utilities-lib</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.openecomp.sdc</groupId>
57 <artifactId>openecomp-sdc-externaltesting-api</artifactId>
58 <version>${project.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.openecomp.sdc.core</groupId>
62 <artifactId>openecomp-common-lib</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>org.openecomp.sdc.core</groupId>
67 <artifactId>openecomp-heat-lib</artifactId>
68 <version>${project.version}</version>
69 </dependency>
70 <dependency>
71 <groupId>org.mockito</groupId>
72 <artifactId>mockito-core</artifactId>
73 <scope>test</scope>
74 </dependency>
75 <dependency>
76 <groupId>commons-io</groupId>
77 <artifactId>commons-io</artifactId>
78 <version>${commons.io.version}</version>
79 </dependency>
80 <dependency>
81 <groupId>org.springframework</groupId>
82 <artifactId>spring-web</artifactId>
83 <version>${spring.framework.version}</version>
84 </dependency>
85 <dependency>
86 <groupId>org.openecomp.sdc</groupId>
87 <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId>
88 <version>${project.version}</version>
89 </dependency>
90 <dependency>
91 <groupId>org.openecomp.sdc.core</groupId>
92 <artifactId>openecomp-tosca-lib</artifactId>
93 <version>${project.version}</version>
94 </dependency>
95 <dependency>
96 <groupId>org.codehaus.groovy</groupId>
97 <artifactId>groovy-all-minimal</artifactId>
98 <version>${groovy.minimal.version}</version>
99 <scope>test</scope>
100 </dependency>
101 <dependency>
102 <groupId>org.projectlombok</groupId>
103 <artifactId>lombok</artifactId>
104 <version>${lombok.version}</version>
105 <scope>provided</scope>
106 </dependency>
107 </dependencies>
Vodafone84a20982019-03-18 15:08:33 +0530108
109</project>