blob: 130cc69b87cffd122953e164c6d1376298c327b7 [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4
5 <parent>
6 <groupId>org.openecomp.sdc</groupId>
7 <artifactId>openecomp-sdc-lib</artifactId>
Michael Landoebd7c8f2017-03-15 20:38:00 +02008 <version>1.1.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +02009 <relativePath>../..</relativePath>
10 </parent>
11
12 <artifactId>openecomp-sdc-versioning-api</artifactId>
13 <name>openecomp-sdc-versioning-api</name>
14
15 <dependencies>
16 <dependency>
Michael Landoefa037d2017-02-19 12:57:33 +020017 <groupId>org.openecomp.sdc</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020018 <artifactId>openecomp-facade-core</artifactId>
19 <version>${project.version}</version>
20 </dependency>
21 <dependency>
Michael Landoefa037d2017-02-19 12:57:33 +020022 <groupId>org.openecomp.sdc</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020023 <artifactId>openecomp-facade-api</artifactId>
24 <version>${project.version}</version>
25 </dependency>
26 <dependency>
Michael Landoefa037d2017-02-19 12:57:33 +020027 <groupId>org.openecomp.sdc</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>
44 <version>2.2.4</version>
45 </dependency>
46 <dependency>
47 <groupId>org.mockito</groupId>
48 <artifactId>mockito-all</artifactId>
49 <scope>test</scope>
50 <version>1.10.19</version>
51 </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>
68 <version>RELEASE</version>
69 </dependency>
70 </dependencies>
71</project>