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 | |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 6 | <groupId>org.openecomp.sdc.core</groupId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 7 | <name>openecomp-tosca-lib</name> |
| 8 | <artifactId>openecomp-tosca-lib</artifactId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 9 | |
| 10 | <parent> |
| 11 | <artifactId>openecomp-sdc-lib</artifactId> |
| 12 | <groupId>org.openecomp.sdc</groupId> |
Michael Lando | 0ad3c80 | 2017-09-19 16:32:59 +0300 | [diff] [blame] | 13 | <version>1.2.0-SNAPSHOT</version> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 14 | <relativePath>..</relativePath> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 15 | </parent> |
| 16 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 17 | <dependencies> |
| 18 | <dependency> |
Avi Ziv | b8e2faf | 2017-07-18 19:45:38 +0300 | [diff] [blame] | 19 | <groupId>org.openecomp.sdc.common</groupId> |
| 20 | <artifactId>openecomp-tosca-datatype</artifactId> |
| 21 | <version>${openecomp.sdc.common.version}</version> |
| 22 | </dependency> |
| 23 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 24 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 25 | <artifactId>openecomp-utilities-lib</artifactId> |
| 26 | <version>${project.version}</version> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>org.openecomp.sdc</groupId> |
priyanshu | e812c4f | 2018-03-05 15:00:10 +0530 | [diff] [blame] | 30 | <artifactId>openecomp-sdc-validation-api</artifactId> |
| 31 | <version>${project.version}</version> |
| 32 | </dependency> |
| 33 | <dependency> |
| 34 | <groupId>org.openecomp.sdc</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 35 | <artifactId>openecomp-sdc-datatypes-lib</artifactId> |
| 36 | <version>${project.version}</version> |
| 37 | </dependency> |
| 38 | <dependency> |
Michael Lando | 61f98d4 | 2017-06-09 04:54:54 +0300 | [diff] [blame] | 39 | <groupId>org.openecomp.sdc.core</groupId> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 40 | <artifactId>openecomp-common-lib</artifactId> |
| 41 | <version>${project.version}</version> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>ch.qos.logback</groupId> |
| 45 | <artifactId>logback-classic</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 46 | <version>${logback.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 47 | </dependency> |
| 48 | <dependency> |
| 49 | <groupId>junit</groupId> |
| 50 | <artifactId>junit</artifactId> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 51 | <version>${junit.version}</version> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 52 | <scope>test</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
Gautam Shah | 09a41f5 | 2018-04-11 19:55:29 +0530 | [diff] [blame] | 55 | <groupId>org.mockito</groupId> |
| 56 | <artifactId>mockito-all</artifactId> |
| 57 | <scope>test</scope> |
| 58 | <version>${mockito.all.version}</version> |
| 59 | </dependency> |
| 60 | <dependency> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 61 | <groupId>org.openecomp.sdc</groupId> |
| 62 | <artifactId>openecomp-sdc-logging-core</artifactId> |
| 63 | <version>${project.version}</version> |
vempo | acd7ec0 | 2018-01-28 14:39:56 +0200 | [diff] [blame] | 64 | <scope>runtime</scope> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 65 | </dependency> |
| 66 | <dependency> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 67 | <groupId>org.openecomp.sdc.common</groupId> |
| 68 | <artifactId>openecomp-configuration-management-core</artifactId> |
| 69 | <version>${openecomp.sdc.common.version}</version> |
| 70 | <scope>runtime</scope> |
| 71 | <exclusions> |
| 72 | <exclusion> |
| 73 | <groupId>org.slf4j</groupId> |
| 74 | <artifactId>slf4j-log4j12</artifactId> |
| 75 | </exclusion> |
| 76 | </exclusions> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 77 | </dependency> |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 78 | <dependency> |
| 79 | <groupId>org.openecomp.sdc.common</groupId> |
| 80 | <artifactId>openecomp-configuration-management-api</artifactId> |
| 81 | <version>${openecomp.sdc.common.version}</version> |
| 82 | </dependency> |
priyanshu | e812c4f | 2018-03-05 15:00:10 +0530 | [diff] [blame] | 83 | <dependency> |
| 84 | <groupId>org.openecomp.sdc.sdc-tosca</groupId> |
| 85 | <artifactId>sdc-tosca</artifactId> |
| 86 | <version>${sdc-tosca-parser.version}</version> |
| 87 | </dependency> |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 88 | </dependencies> |
shrikantawachar | 9a69925 | 2018-04-06 11:07:00 +0530 | [diff] [blame] | 89 | |
Michael Lando | f5f13c4 | 2017-02-19 12:35:04 +0200 | [diff] [blame] | 90 | |
AviZi | 280f801 | 2017-06-09 02:39:56 +0300 | [diff] [blame] | 91 | </project> |