blob: 19a8f81a33e99be74ae0aa8e17767621a1a124c7 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xmlns="http://maven.apache.org/POM/4.0.0"
Michael Landof5f13c42017-02-19 12:35:04 +02003 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4 <modelVersion>4.0.0</modelVersion>
5
AviZi280f8012017-06-09 02:39:56 +03006 <name>openecomp-sdc-validation-impl</name>
7 <artifactId>openecomp-sdc-validation-impl</artifactId>
8
9
Michael Landof5f13c42017-02-19 12:35:04 +020010 <parent>
11 <groupId>org.openecomp.sdc</groupId>
12 <artifactId>openecomp-sdc-lib</artifactId>
Michael Landoebd7c8f2017-03-15 20:38:00 +020013 <version>1.1.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020014 <relativePath>../..</relativePath>
15 </parent>
16
Michael Landof5f13c42017-02-19 12:35:04 +020017 <dependencies>
18 <dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020019 <groupId>ch.qos.logback</groupId>
20 <artifactId>logback-classic</artifactId>
AviZi280f8012017-06-09 02:39:56 +030021 <version>${logback.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020022 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020023 <dependency>
24 <groupId>org.testng</groupId>
25 <artifactId>testng</artifactId>
26 <scope>test</scope>
27 <version>6.8.5</version>
28 <exclusions>
29 <exclusion>
30 <artifactId>snakeyaml</artifactId>
31 <groupId>org.yaml</groupId>
32 </exclusion>
33 </exclusions>
34 </dependency>
35 <dependency>
AviZi280f8012017-06-09 02:39:56 +030036 <groupId>org.openecomp.sdc</groupId>
37 <artifactId>openecomp-sdc-logging-core</artifactId>
38 <version>${project.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020039 </dependency>
40 <dependency>
Michael Landoefa037d2017-02-19 12:57:33 +020041 <groupId>org.openecomp.sdc</groupId>
AviZi280f8012017-06-09 02:39:56 +030042 <artifactId>openecomp-sdc-logging-api</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>junit</groupId>
47 <artifactId>junit</artifactId>
48 <version>${junit.version}</version>
49 <scope>test</scope>
50 </dependency>
51 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030052 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020053 <artifactId>openecomp-utilities-lib</artifactId>
54 <version>${project.version}</version>
55 </dependency>
56 <dependency>
57 <groupId>org.openecomp.sdc</groupId>
58 <artifactId>openecomp-sdc-validation-api</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030062 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020063 <artifactId>openecomp-common-lib</artifactId>
64 <version>${project.version}</version>
65 </dependency>
66 <dependency>
67 <groupId>org.mockito</groupId>
68 <artifactId>mockito-all</artifactId>
69 <scope>test</scope>
AviZi280f8012017-06-09 02:39:56 +030070 <version>${mockito.all.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020071 </dependency>
72 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030073 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020074 <artifactId>openecomp-heat-lib</artifactId>
75 <version>${project.version}</version>
76 </dependency>
AviZi280f8012017-06-09 02:39:56 +030077 <dependency>
78 <groupId>commons-io</groupId>
79 <artifactId>commons-io</artifactId>
80 <version>${commons.io.version}</version>
81 <scope>test</scope>
82 </dependency>
83 <dependency>
84 <groupId>org.openecomp.sdc</groupId>
85 <artifactId>openecomp-sdc-validation-core</artifactId>
86 <version>${project.version}</version>
87 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020088 </dependencies>
89
AviZi280f8012017-06-09 02:39:56 +030090</project>