blob: 7eaa01bc4b68941c8cd4bf3738114112cc500bbe [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 Lando04a5bef2018-10-23 01:32:15 +030011 <version>1.3.1-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>
mojahidi52b9a0d2018-10-08 14:28:48 +053017 <groupId>org.projectlombok</groupId>
18 <artifactId>lombok</artifactId>
19 </dependency>
20 <dependency>
ojasdubeyb111bbe2018-08-21 17:55:30 +053021 <groupId>com.datastax.cassandra</groupId>
22 <artifactId>cassandra-driver-extras</artifactId>
23 <version>${datastax.cassandra.version}</version>
24 </dependency>
25 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030026 <groupId>org.openecomp.sdc.core</groupId>
talig8e9c0652017-12-20 14:30:43 +020027 <artifactId>openecomp-session-lib</artifactId>
28 <version>${project.version}</version>
29 </dependency>
30 <dependency>
31 <groupId>org.openecomp.sdc</groupId>
32 <artifactId>openecomp-item-permissions-core</artifactId>
33 <version>${project.version}</version>
34 </dependency>
35 <dependency>
36 <groupId>org.openecomp.sdc</groupId>
37 <artifactId>openecomp-item-permissions-api</artifactId>
38 <version>${project.version}</version>
39 </dependency>
40 <dependency>
41 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020042 <artifactId>openecomp-facade-core</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030046 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020047 <artifactId>openecomp-facade-api</artifactId>
48 <version>${project.version}</version>
49 </dependency>
50 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030051 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020052 <artifactId>openecomp-nosqldb-core</artifactId>
53 <version>${project.version}</version>
54 </dependency>
55 <dependency>
56 <groupId>org.hibernate</groupId>
57 <artifactId>hibernate-validator</artifactId>
58 <version>${hibernate.validator.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>javax.el</groupId>
62 <artifactId>javax.el-api</artifactId>
63 <version>${javax.el-api.version}</version>
64 </dependency>
65 <dependency>
66 <groupId>org.glassfish.web</groupId>
67 <artifactId>javax.el</artifactId>
AviZi280f8012017-06-09 02:39:56 +030068 <version>${javax.el.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020069 </dependency>
70 <dependency>
71 <groupId>org.mockito</groupId>
72 <artifactId>mockito-all</artifactId>
73 <scope>test</scope>
AviZi280f8012017-06-09 02:39:56 +030074 <version>${mockito.all.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020075 </dependency>
76 <dependency>
77 <groupId>org.testng</groupId>
78 <artifactId>testng</artifactId>
79 <scope>test</scope>
avigaffaaae39fb2018-06-18 19:56:59 +030080 <version>${testng.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020081 <exclusions>
82 <exclusion>
83 <artifactId>snakeyaml</artifactId>
84 <groupId>org.yaml</groupId>
85 </exclusion>
86 </exclusions>
87 </dependency>
88 <dependency>
89 <groupId>junit</groupId>
90 <artifactId>junit</artifactId>
91 <scope>test</scope>
Avi Zivb8e2faf2017-07-18 19:45:38 +030092 <version>${junit.version}</version>
AviZi280f8012017-06-09 02:39:56 +030093 </dependency>
94 <dependency>
95 <groupId>org.openecomp.sdc</groupId>
96 <artifactId>openecomp-sdc-logging-core</artifactId>
97 <version>${project.version}</version>
vempoacd7ec02018-01-28 14:39:56 +020098 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020099 </dependency>
100 </dependencies>
AviZi280f8012017-06-09 02:39:56 +0300101</project>