AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 1 | <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xmlns="http://maven.apache.org/POM/4.0.0" |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 3 | 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 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 6 | <name>openecomp-sdc-versioning-api</name> |
| 7 | <artifactId>openecomp-sdc-versioning-api</artifactId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 8 | <parent> |
| 9 | <groupId>org.openecomp.sdc</groupId> |
| 10 | <artifactId>openecomp-sdc-lib</artifactId> |
Michael Lando | d8a0dea | 2018-06-02 19:23:27 +0300 | [diff] [blame] | 11 | <version>1.3.0-SNAPSHOT</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 12 | <relativePath>../..</relativePath> |
| 13 | </parent> |
| 14 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 15 | <dependencies> |
| 16 | <dependency> |
ojasdubey | b111bbe | 2018-08-21 17:55:30 +0530 | [diff] [blame^] | 17 | <groupId>com.datastax.cassandra</groupId> |
| 18 | <artifactId>cassandra-driver-extras</artifactId> |
| 19 | <version>${datastax.cassandra.version}</version> |
| 20 | </dependency> |
| 21 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 22 | <groupId>org.openecomp.sdc.core</groupId> |
talig | 8e9c065 | 2017-12-20 14:30:43 +0200 | [diff] [blame] | 23 | <artifactId>openecomp-session-lib</artifactId> |
| 24 | <version>${project.version}</version> |
| 25 | </dependency> |
| 26 | <dependency> |
| 27 | <groupId>org.openecomp.sdc</groupId> |
| 28 | <artifactId>openecomp-item-permissions-core</artifactId> |
| 29 | <version>${project.version}</version> |
| 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>org.openecomp.sdc</groupId> |
| 33 | <artifactId>openecomp-item-permissions-api</artifactId> |
| 34 | <version>${project.version}</version> |
| 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 38 | <artifactId>openecomp-facade-core</artifactId> |
| 39 | <version>${project.version}</version> |
| 40 | </dependency> |
| 41 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 42 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 43 | <artifactId>openecomp-facade-api</artifactId> |
| 44 | <version>${project.version}</version> |
| 45 | </dependency> |
| 46 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 47 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 48 | <artifactId>openecomp-nosqldb-core</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.hibernate</groupId> |
| 53 | <artifactId>hibernate-validator</artifactId> |
| 54 | <version>${hibernate.validator.version}</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>javax.el</groupId> |
| 58 | <artifactId>javax.el-api</artifactId> |
| 59 | <version>${javax.el-api.version}</version> |
| 60 | </dependency> |
| 61 | <dependency> |
| 62 | <groupId>org.glassfish.web</groupId> |
| 63 | <artifactId>javax.el</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 64 | <version>${javax.el.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.mockito</groupId> |
| 68 | <artifactId>mockito-all</artifactId> |
| 69 | <scope>test</scope> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 70 | <version>${mockito.all.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.testng</groupId> |
| 74 | <artifactId>testng</artifactId> |
| 75 | <scope>test</scope> |
avigaffa | aae39fb | 2018-06-18 19:56:59 +0300 | [diff] [blame] | 76 | <version>${testng.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 77 | <exclusions> |
| 78 | <exclusion> |
| 79 | <artifactId>snakeyaml</artifactId> |
| 80 | <groupId>org.yaml</groupId> |
| 81 | </exclusion> |
| 82 | </exclusions> |
| 83 | </dependency> |
| 84 | <dependency> |
| 85 | <groupId>junit</groupId> |
| 86 | <artifactId>junit</artifactId> |
| 87 | <scope>test</scope> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 88 | <version>${junit.version}</version> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>org.openecomp.sdc</groupId> |
| 92 | <artifactId>openecomp-sdc-logging-core</artifactId> |
| 93 | <version>${project.version}</version> |
vempo | acd7ec0 | 2018-01-28 14:39:56 +0200 | [diff] [blame] | 94 | <scope>runtime</scope> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 95 | </dependency> |
| 96 | </dependencies> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 97 | </project> |