blob: 3d3a279cbac04af294fc58a034502a4dc27605f2 [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +03001<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xmlns="http://maven.apache.org/POM/4.0.0"
Michael Landof5f13c42017-02-19 12:35:04 +02003 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 Lando61f98d42017-06-09 04:54:54 +03006 <groupId>org.openecomp.sdc.core</groupId>
AviZi280f8012017-06-09 02:39:56 +03007 <name>openecomp-tosca-lib</name>
8 <artifactId>openecomp-tosca-lib</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +02009
10 <parent>
11 <artifactId>openecomp-sdc-lib</artifactId>
12 <groupId>org.openecomp.sdc</groupId>
Michael Lando04a5bef2018-10-23 01:32:15 +030013 <version>1.3.1-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020014 </parent>
15
Michael Landof5f13c42017-02-19 12:35:04 +020016 <dependencies>
17 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053018 <groupId>org.onap.sdc.common</groupId>
19 <artifactId>onap-tosca-datatype</artifactId>
vempo494e4422018-07-18 17:10:01 +030020 <version>${project.version}</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030021 </dependency>
22 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030023 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020024 <artifactId>openecomp-utilities-lib</artifactId>
25 <version>${project.version}</version>
26 </dependency>
27 <dependency>
28 <groupId>org.openecomp.sdc</groupId>
priyanshue812c4f2018-03-05 15:00:10 +053029 <artifactId>openecomp-sdc-validation-api</artifactId>
30 <version>${project.version}</version>
31 </dependency>
32 <dependency>
33 <groupId>org.openecomp.sdc</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020034 <artifactId>openecomp-sdc-datatypes-lib</artifactId>
35 <version>${project.version}</version>
36 </dependency>
37 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030038 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020039 <artifactId>openecomp-common-lib</artifactId>
40 <version>${project.version}</version>
41 </dependency>
42 <dependency>
43 <groupId>ch.qos.logback</groupId>
44 <artifactId>logback-classic</artifactId>
AviZi280f8012017-06-09 02:39:56 +030045 <version>${logback.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020046 </dependency>
47 <dependency>
48 <groupId>junit</groupId>
49 <artifactId>junit</artifactId>
AviZi280f8012017-06-09 02:39:56 +030050 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020051 <scope>test</scope>
52 </dependency>
53 <dependency>
Gautam Shah09a41f52018-04-11 19:55:29 +053054 <groupId>org.mockito</groupId>
55 <artifactId>mockito-all</artifactId>
56 <scope>test</scope>
57 <version>${mockito.all.version}</version>
58 </dependency>
59 <dependency>
AviZi280f8012017-06-09 02:39:56 +030060 <groupId>org.openecomp.sdc</groupId>
61 <artifactId>openecomp-sdc-logging-core</artifactId>
62 <version>${project.version}</version>
vempoacd7ec02018-01-28 14:39:56 +020063 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020064 </dependency>
65 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053066 <groupId>org.onap.sdc.common</groupId>
67 <artifactId>onap-configuration-management-core</artifactId>
vempo494e4422018-07-18 17:10:01 +030068 <version>${project.version}</version>
AviZi280f8012017-06-09 02:39:56 +030069 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020070 </dependency>
AviZi280f8012017-06-09 02:39:56 +030071 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053072 <groupId>org.onap.sdc.common</groupId>
73 <artifactId>onap-configuration-management-api</artifactId>
vempo494e4422018-07-18 17:10:01 +030074 <version>${project.version}</version>
AviZi280f8012017-06-09 02:39:56 +030075 </dependency>
priyanshue812c4f2018-03-05 15:00:10 +053076 <dependency>
Michael Lando5b593492018-07-29 16:13:45 +030077 <groupId>org.onap.sdc.sdc-tosca</groupId>
priyanshue812c4f2018-03-05 15:00:10 +053078 <artifactId>sdc-tosca</artifactId>
79 <version>${sdc-tosca-parser.version}</version>
80 </dependency>
siddharth09052fb91492018-10-08 16:49:26 +053081 <dependency>
82 <groupId>org.projectlombok</groupId>
83 <artifactId>lombok</artifactId>
84 <scope>compile</scope>
85 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020086 </dependencies>
Gautam Shah3de22e12018-04-21 16:18:37 +053087 <properties>
88 <useSystemClassLoader>false</useSystemClassLoader>
89 </properties>
shrikantawachar9a699252018-04-06 11:07:00 +053090
Michael Landof5f13c42017-02-19 12:35:04 +020091
AviZi280f8012017-06-09 02:39:56 +030092</project>