blob: d11362c3a39ee85539515349300ce72a86f584be [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-versioning-api</name>
7 <artifactId>openecomp-sdc-versioning-api</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +02008 <parent>
9 <groupId>org.openecomp.sdc</groupId>
10 <artifactId>openecomp-sdc-lib</artifactId>
Michael Lando0ad3c802017-09-19 16:32:59 +030011 <version>1.2.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020012 <relativePath>../..</relativePath>
13 </parent>
14
Michael Landof5f13c42017-02-19 12:35:04 +020015 <dependencies>
16 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030017 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020018 <artifactId>openecomp-facade-core</artifactId>
19 <version>${project.version}</version>
20 </dependency>
21 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030022 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020023 <artifactId>openecomp-facade-api</artifactId>
24 <version>${project.version}</version>
25 </dependency>
26 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030027 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020028 <artifactId>openecomp-nosqldb-core</artifactId>
29 <version>${project.version}</version>
30 </dependency>
31 <dependency>
32 <groupId>org.hibernate</groupId>
33 <artifactId>hibernate-validator</artifactId>
34 <version>${hibernate.validator.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>javax.el</groupId>
38 <artifactId>javax.el-api</artifactId>
39 <version>${javax.el-api.version}</version>
40 </dependency>
41 <dependency>
42 <groupId>org.glassfish.web</groupId>
43 <artifactId>javax.el</artifactId>
AviZi280f8012017-06-09 02:39:56 +030044 <version>${javax.el.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020045 </dependency>
46 <dependency>
47 <groupId>org.mockito</groupId>
48 <artifactId>mockito-all</artifactId>
49 <scope>test</scope>
AviZi280f8012017-06-09 02:39:56 +030050 <version>${mockito.all.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020051 </dependency>
52 <dependency>
53 <groupId>org.testng</groupId>
54 <artifactId>testng</artifactId>
55 <scope>test</scope>
56 <version>6.8.5</version>
57 <exclusions>
58 <exclusion>
59 <artifactId>snakeyaml</artifactId>
60 <groupId>org.yaml</groupId>
61 </exclusion>
62 </exclusions>
63 </dependency>
64 <dependency>
65 <groupId>junit</groupId>
66 <artifactId>junit</artifactId>
67 <scope>test</scope>
Avi Zivb8e2faf2017-07-18 19:45:38 +030068 <version>${junit.version}</version>
AviZi280f8012017-06-09 02:39:56 +030069 </dependency>
70 <dependency>
71 <groupId>org.openecomp.sdc</groupId>
72 <artifactId>openecomp-sdc-logging-core</artifactId>
73 <version>${project.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020074 </dependency>
75 </dependencies>
AviZi280f8012017-06-09 02:39:56 +030076</project>