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 | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame^] | 11 | <version>1.2.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> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 17 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 18 | <artifactId>openecomp-facade-core</artifactId> |
| 19 | <version>${project.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> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 23 | <artifactId>openecomp-facade-api</artifactId> |
| 24 | <version>${project.version}</version> |
| 25 | </dependency> |
| 26 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 27 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 28 | <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> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 44 | <version>${javax.el.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 45 | </dependency> |
| 46 | <dependency> |
| 47 | <groupId>org.mockito</groupId> |
| 48 | <artifactId>mockito-all</artifactId> |
| 49 | <scope>test</scope> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 50 | <version>${mockito.all.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 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> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 68 | <version>${junit.version}</version> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>org.openecomp.sdc</groupId> |
| 72 | <artifactId>openecomp-sdc-logging-core</artifactId> |
| 73 | <version>${project.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 74 | </dependency> |
| 75 | </dependencies> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 76 | </project> |