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-enrichment-impl</name> |
| 7 | <artifactId>openecomp-sdc-enrichment-impl</artifactId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 8 | |
| 9 | <parent> |
| 10 | <groupId>org.openecomp.sdc</groupId> |
| 11 | <artifactId>openecomp-sdc-lib</artifactId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 12 | <version>1.2.0-SNAPSHOT</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 13 | <relativePath>../..</relativePath> |
| 14 | </parent> |
| 15 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 16 | <dependencies> |
| 17 | <dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 18 | <groupId>ch.qos.logback</groupId> |
| 19 | <artifactId>logback-classic</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 20 | <version>${logback.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 21 | </dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 22 | <dependency> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 23 | <groupId>org.openecomp.sdc.common</groupId> |
| 24 | <artifactId>openecomp-tosca-datatype</artifactId> |
| 25 | <version>${openecomp.sdc.common.version}</version> |
| 26 | </dependency> |
| 27 | |
| 28 | <dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 29 | <groupId>org.testng</groupId> |
| 30 | <artifactId>testng</artifactId> |
| 31 | <scope>test</scope> |
| 32 | <version>6.8.5</version> |
| 33 | <exclusions> |
| 34 | <exclusion> |
| 35 | <artifactId>snakeyaml</artifactId> |
| 36 | <groupId>org.yaml</groupId> |
| 37 | </exclusion> |
| 38 | </exclusions> |
| 39 | </dependency> |
| 40 | <dependency> |
| 41 | <groupId>junit</groupId> |
| 42 | <artifactId>junit</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 43 | <version>${junit.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 44 | <scope>test</scope> |
| 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-utilities-lib</artifactId> |
| 49 | <version>${project.version}</version> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>org.openecomp.sdc</groupId> |
| 53 | <artifactId>openecomp-sdc-enrichment-api</artifactId> |
| 54 | <version>${project.version}</version> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.openecomp.sdc</groupId> |
| 58 | <artifactId>openecomp-sdc-model-core</artifactId> |
| 59 | <version>${project.version}</version> |
| 60 | </dependency> |
| 61 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 62 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 63 | <artifactId>openecomp-common-lib</artifactId> |
| 64 | <version>${project.version}</version> |
| 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> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 73 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 74 | <artifactId>openecomp-heat-lib</artifactId> |
| 75 | <version>${project.version}</version> |
| 76 | </dependency> |
| 77 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 78 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 79 | <artifactId>openecomp-tosca-lib</artifactId> |
| 80 | <version>${project.version}</version> |
| 81 | </dependency> |
| 82 | <dependency> |
| 83 | <groupId>org.openecomp.sdc</groupId> |
| 84 | <artifactId>openecomp-sdc-translator-core</artifactId> |
| 85 | <version>${project.version}</version> |
| 86 | </dependency> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 87 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 88 | <groupId>org.openecomp.sdc.core</groupId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 89 | <artifactId>openecomp-config-lib</artifactId> |
| 90 | <version>${project.version}</version> |
| 91 | </dependency> |
| 92 | <dependency> |
| 93 | <groupId>org.openecomp.sdc</groupId> |
| 94 | <artifactId>openecomp-sdc-vendor-software-product-api</artifactId> |
| 95 | <version>${project.version}</version> |
| 96 | </dependency> |
| 97 | <dependency> |
| 98 | <scope>runtime</scope> |
| 99 | <groupId>org.openecomp.sdc</groupId> |
| 100 | <artifactId>openecomp-sdc-vendor-software-product-core</artifactId> |
| 101 | <version>${project.version}</version> |
| 102 | </dependency> |
| 103 | <dependency> |
| 104 | <scope>test</scope> |
| 105 | <groupId>org.openecomp.sdc</groupId> |
| 106 | <artifactId>openecomp-sdc-model-impl</artifactId> |
| 107 | <version>${project.version}</version> |
| 108 | </dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 109 | </dependencies> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 110 | <build> |
| 111 | <plugins> |
| 112 | <plugin> |
| 113 | <groupId>org.apache.maven.plugins</groupId> |
| 114 | <artifactId>maven-surefire-plugin</artifactId> |
| 115 | <version>${mvn.surefire.version}</version> |
| 116 | <configuration> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 117 | <useSystemClassLoader>false</useSystemClassLoader> |
| 118 | <redirectTestOutputToFile>true</redirectTestOutputToFile> |
| 119 | </configuration> |
| 120 | </plugin> |
| 121 | </plugins> |
| 122 | </build> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 123 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 124 | </project> |