blob: fa3ccd64ac2f79fee2a08fc98cceeed4cdb493e3 [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
AviZi280f8012017-06-09 02:39:56 +03007 <artifactId>openecomp-sdc-validation-manager</artifactId>
8
Michael Landof5f13c42017-02-19 12:35:04 +02009 <parent>
10 <groupId>org.openecomp.sdc</groupId>
11 <artifactId>backend</artifactId>
Michael Landod8a0dea2018-06-02 19:23:27 +030012 <version>1.3.0-SNAPSHOT</version>
AviZi280f8012017-06-09 02:39:56 +030013 <relativePath>..</relativePath>
Michael Landof5f13c42017-02-19 12:35:04 +020014 </parent>
15
Michael Landof5f13c42017-02-19 12:35:04 +020016 <dependencies>
17 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030018 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020019 <artifactId>openecomp-utilities-lib</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030023 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020024 <artifactId>openecomp-heat-lib</artifactId>
25 <version>${project.version}</version>
26 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020027 <dependency>
28 <groupId>org.testng</groupId>
29 <artifactId>testng</artifactId>
AviZi280f8012017-06-09 02:39:56 +030030 <version>${testng.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020031 <scope>test</scope>
32 </dependency>
33 <dependency>
34 <groupId>junit</groupId>
35 <artifactId>junit</artifactId>
AviZi280f8012017-06-09 02:39:56 +030036 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020037 <scope>test</scope>
38 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020039 <dependency>
40 <groupId>org.openecomp.sdc</groupId>
41 <artifactId>openecomp-sdc-translator-core</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>com.fasterxml.jackson.dataformat</groupId>
46 <artifactId>jackson-dataformat-xml</artifactId>
AviZi280f8012017-06-09 02:39:56 +030047 <version>${jackson.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020048 </dependency>
49 <dependency>
50 <groupId>org.codehaus.woodstox</groupId>
51 <artifactId>woodstox-core-asl</artifactId>
AviZi280f8012017-06-09 02:39:56 +030052 <version>${woodstox.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020053 </dependency>
54 <dependency>
55 <groupId>org.openecomp.sdc</groupId>
56 <artifactId>openecomp-sdc-vendor-license-core</artifactId>
57 <version>${project.version}</version>
58 </dependency>
59 <dependency>
60 <groupId>org.openecomp.sdc</groupId>
61 <artifactId>openecomp-sdc-validation-api</artifactId>
62 <version>${project.version}</version>
63 </dependency>
AviZi280f8012017-06-09 02:39:56 +030064 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030065 <groupId>org.openecomp.sdc.core</groupId>
AviZi280f8012017-06-09 02:39:56 +030066 <artifactId>openecomp-common-lib</artifactId>
67 <version>${project.version}</version>
68 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020069 </dependencies>
70
71
AviZi280f8012017-06-09 02:39:56 +030072</project>