blob: 852bdb50f7ddd9567d4cbf5b213c248d190f2fd8 [file] [log] [blame]
Avi Zivb8e2faf2017-07-18 19:45:38 +03001<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xmlns="http://maven.apache.org/POM/4.0.0"
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
6 <name>openecomp-sdc-tosca-generator-api</name>
7 <artifactId>openecomp-sdc-tosca-generator-api</artifactId>
8
Avi Zivb8e2faf2017-07-18 19:45:38 +03009 <parent>
10 <groupId>org.openecomp.sdc</groupId>
11 <artifactId>openecomp-sdc-lib</artifactId>
Michael Landod8a0dea2018-06-02 19:23:27 +030012 <version>1.3.0-SNAPSHOT</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030013 <relativePath>../..</relativePath>
14 </parent>
15
16 <dependencies>
17 <dependency>
18 <groupId>org.openecomp.sdc.core</groupId>
19 <artifactId>openecomp-facade-core</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22 <dependency>
23 <groupId>org.openecomp.sdc</groupId>
24 <artifactId>openecomp-sdc-validation-api</artifactId>
25 <version>${project.version}</version>
26 </dependency>
27 <dependency>
28 <groupId>org.openecomp.sdc</groupId>
29 <artifactId>openecomp-sdc-validation-core</artifactId>
30 <version>${project.version}</version>
31 <scope>runtime</scope>
32 </dependency>
33 <dependency>
34 <groupId>io.swagger</groupId>
35 <artifactId>swagger-annotations</artifactId>
36 <version>1.5.3</version>
37 </dependency>
38 <dependency>
39 <groupId>org.openecomp.sdc.core</groupId>
40 <artifactId>openecomp-tosca-lib</artifactId>
41 <version>${project.version}</version>
42 </dependency>
43 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053044 <groupId>org.onap.sdc.common</groupId>
45 <artifactId>onap-configuration-management-core</artifactId>
Avi Zivb8e2faf2017-07-18 19:45:38 +030046 <version>${openecomp.sdc.common.version}</version>
47 <scope>runtime</scope>
48 <exclusions>
49 <exclusion>
50 <groupId>org.slf4j</groupId>
51 <artifactId>slf4j-log4j12</artifactId>
52 </exclusion>
53 </exclusions>
54 </dependency>
55 <dependency>
amitjai42c920b2018-04-27 13:28:57 +053056 <groupId>org.onap.sdc.common</groupId>
57 <artifactId>onap-configuration-management-api</artifactId>
Avi Zivb8e2faf2017-07-18 19:45:38 +030058 <version>${project.version}</version>
59 </dependency>
60 <dependency>
61 <groupId>org.openecomp.sdc</groupId>
62 <artifactId>openecomp-sdc-vendor-software-product-api</artifactId>
63 <version>${project.version}</version>
64 </dependency>
65 </dependencies>
66
ayalabenc42dd9b2018-05-24 15:36:27 +030067
68 <properties>
69 <jacoco.skip>true</jacoco.skip> <sonar.skip>true</sonar.skip>
70 </properties>
71
Avi Ziv61070c92017-07-26 17:37:57 +030072</project>