blob: 0b2cb5f2a89c7f4822fcbda5e16f9ae356070eeb [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 Lando0ad3c802017-09-19 16:32:59 +030013 <version>1.2.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>
vempoacd7ec02018-01-28 14:39:56 +020039 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020040 </dependency>
41 <dependency>
Michael Landoefa037d2017-02-19 12:57:33 +020042 <groupId>org.openecomp.sdc</groupId>
AviZi280f8012017-06-09 02:39:56 +030043 <artifactId>openecomp-sdc-logging-api</artifactId>
44 <version>${project.version}</version>
45 </dependency>
46 <dependency>
47 <groupId>junit</groupId>
48 <artifactId>junit</artifactId>
49 <version>${junit.version}</version>
50 <scope>test</scope>
51 </dependency>
52 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030053 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020054 <artifactId>openecomp-utilities-lib</artifactId>
55 <version>${project.version}</version>
56 </dependency>
57 <dependency>
58 <groupId>org.openecomp.sdc</groupId>
59 <artifactId>openecomp-sdc-validation-api</artifactId>
60 <version>${project.version}</version>
61 </dependency>
62 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030063 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020064 <artifactId>openecomp-common-lib</artifactId>
65 <version>${project.version}</version>
66 </dependency>
67 <dependency>
68 <groupId>org.mockito</groupId>
69 <artifactId>mockito-all</artifactId>
70 <scope>test</scope>
AviZi280f8012017-06-09 02:39:56 +030071 <version>${mockito.all.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020072 </dependency>
73 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030074 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020075 <artifactId>openecomp-heat-lib</artifactId>
76 <version>${project.version}</version>
77 </dependency>
AviZi280f8012017-06-09 02:39:56 +030078 <dependency>
79 <groupId>commons-io</groupId>
80 <artifactId>commons-io</artifactId>
81 <version>${commons.io.version}</version>
82 <scope>test</scope>
83 </dependency>
84 <dependency>
85 <groupId>org.openecomp.sdc</groupId>
86 <artifactId>openecomp-sdc-validation-core</artifactId>
87 <version>${project.version}</version>
88 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020089 </dependencies>
90
AviZi280f8012017-06-09 02:39:56 +030091</project>