Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" |
| 3 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 4 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | <modelVersion>4.0.0</modelVersion> |
| 6 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 7 | <artifactId>openecomp-sdc-validation-manager</artifactId> |
| 8 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 9 | <parent> |
| 10 | <groupId>org.openecomp.sdc</groupId> |
| 11 | <artifactId>backend</artifactId> |
Michael Lando | 1276ee1 | 2018-11-01 16:25:31 +0200 | [diff] [blame^] | 12 | <version>1.3.2-SNAPSHOT</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 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-utilities-lib</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-heat-lib</artifactId> |
| 24 | <version>${project.version}</version> |
| 25 | </dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 26 | <dependency> |
| 27 | <groupId>org.testng</groupId> |
| 28 | <artifactId>testng</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 29 | <version>${testng.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 30 | <scope>test</scope> |
| 31 | </dependency> |
| 32 | <dependency> |
| 33 | <groupId>junit</groupId> |
| 34 | <artifactId>junit</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 35 | <version>${junit.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 36 | <scope>test</scope> |
| 37 | </dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 38 | <dependency> |
| 39 | <groupId>org.openecomp.sdc</groupId> |
| 40 | <artifactId>openecomp-sdc-translator-core</artifactId> |
| 41 | <version>${project.version}</version> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 45 | <artifactId>jackson-dataformat-xml</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 46 | <version>${jackson.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>org.codehaus.woodstox</groupId> |
| 50 | <artifactId>woodstox-core-asl</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 51 | <version>${woodstox.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 52 | </dependency> |
| 53 | <dependency> |
| 54 | <groupId>org.openecomp.sdc</groupId> |
| 55 | <artifactId>openecomp-sdc-vendor-license-core</artifactId> |
| 56 | <version>${project.version}</version> |
| 57 | </dependency> |
| 58 | <dependency> |
| 59 | <groupId>org.openecomp.sdc</groupId> |
| 60 | <artifactId>openecomp-sdc-validation-api</artifactId> |
| 61 | <version>${project.version}</version> |
| 62 | </dependency> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 63 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 64 | <groupId>org.openecomp.sdc.core</groupId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 65 | <artifactId>openecomp-common-lib</artifactId> |
| 66 | <version>${project.version}</version> |
| 67 | </dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 68 | </dependencies> |
| 69 | |
| 70 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 71 | </project> |