Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 5 | <name>openecomp-sdc-vendor-license-manager</name> |
| 6 | <artifactId>openecomp-sdc-vendor-license-manager</artifactId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 7 | |
| 8 | <parent> |
| 9 | <artifactId>backend</artifactId> |
| 10 | <groupId>org.openecomp.sdc</groupId> |
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 | </parent> |
| 13 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 14 | <build> |
| 15 | <plugins> |
| 16 | <plugin> |
| 17 | <groupId>org.apache.maven.plugins</groupId> |
| 18 | <artifactId>maven-surefire-plugin</artifactId> |
| 19 | <version>2.12.4</version> |
| 20 | <configuration> |
| 21 | <skipTests>true</skipTests> |
| 22 | </configuration> |
| 23 | </plugin> |
| 24 | </plugins> |
| 25 | </build> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 26 | |
| 27 | <dependencies> |
| 28 | <dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 29 | <groupId>org.openecomp.sdc</groupId> |
| 30 | <artifactId>openecomp-sdc-vendor-license-core</artifactId> |
| 31 | <version>${project.version}</version> |
| 32 | </dependency> |
| 33 | <dependency> |
| 34 | <groupId>org.mockito</groupId> |
| 35 | <artifactId>mockito-all</artifactId> |
| 36 | <scope>test</scope> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 37 | <version>${mockito.all.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>org.testng</groupId> |
| 41 | <artifactId>testng</artifactId> |
| 42 | <scope>test</scope> |
| 43 | <version>6.8.5</version> |
| 44 | <exclusions> |
| 45 | <exclusion> |
| 46 | <artifactId>snakeyaml</artifactId> |
| 47 | <groupId>org.yaml</groupId> |
| 48 | </exclusion> |
| 49 | </exclusions> |
| 50 | </dependency> |
| 51 | <dependency> |
| 52 | <groupId>junit</groupId> |
| 53 | <artifactId>junit</artifactId> |
| 54 | <scope>test</scope> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 55 | <version>${junit.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 56 | </dependency> |
| 57 | <dependency> |
| 58 | <groupId>javax.el</groupId> |
| 59 | <artifactId>javax.el-api</artifactId> |
| 60 | <version>${javax.el-api.version}</version> |
| 61 | </dependency> |
| 62 | <dependency> |
| 63 | <groupId>org.glassfish.web</groupId> |
| 64 | <artifactId>javax.el</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 65 | <version>${javax.el.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 66 | </dependency> |
| 67 | <dependency> |
| 68 | <groupId>org.codehaus.woodstox</groupId> |
| 69 | <artifactId>woodstox-core-asl</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 70 | <version>${woodstox.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.openecomp.sdc</groupId> |
| 74 | <artifactId>openecomp-sdc-vendor-software-product-manager</artifactId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame^] | 75 | <version>1.2.0-SNAPSHOT</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 76 | </dependency> |
| 77 | <dependency> |
| 78 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
| 79 | <artifactId>jackson-dataformat-xml</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 80 | <version>${jackson.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 81 | </dependency> |
| 82 | <!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
| 83 | <dependency> |
| 84 | <groupId>commons-io</groupId> |
| 85 | <artifactId>commons-io</artifactId> |
| 86 | <version>${commons.io.version}</version> |
| 87 | </dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 88 | </dependencies> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 89 | </project> |