blob: 8880c2bd073877d0fce601fe221518fd98c200bd [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 Lando0ad3c802017-09-19 16:32:59 +030013 <version>1.2.0-SNAPSHOT</version>
AviZi280f8012017-06-09 02:39:56 +030014 <relativePath>..</relativePath>
Michael Landof5f13c42017-02-19 12:35:04 +020015 </parent>
16
Michael Landof5f13c42017-02-19 12:35:04 +020017 <dependencies>
18 <dependency>
Avi Zivb8e2faf2017-07-18 19:45:38 +030019 <groupId>org.openecomp.sdc.common</groupId>
20 <artifactId>openecomp-tosca-datatype</artifactId>
21 <version>${openecomp.sdc.common.version}</version>
22 </dependency>
23 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030024 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020025 <artifactId>openecomp-utilities-lib</artifactId>
26 <version>${project.version}</version>
27 </dependency>
28 <dependency>
29 <groupId>org.openecomp.sdc</groupId>
priyanshue812c4f2018-03-05 15:00:10 +053030 <artifactId>openecomp-sdc-validation-api</artifactId>
31 <version>${project.version}</version>
32 </dependency>
33 <dependency>
34 <groupId>org.openecomp.sdc</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020035 <artifactId>openecomp-sdc-datatypes-lib</artifactId>
36 <version>${project.version}</version>
37 </dependency>
38 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030039 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020040 <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>
AviZi280f8012017-06-09 02:39:56 +030046 <version>${logback.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020047 </dependency>
48 <dependency>
49 <groupId>junit</groupId>
50 <artifactId>junit</artifactId>
AviZi280f8012017-06-09 02:39:56 +030051 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020052 <scope>test</scope>
53 </dependency>
54 <dependency>
AviZi280f8012017-06-09 02:39:56 +030055 <groupId>org.openecomp.sdc</groupId>
56 <artifactId>openecomp-sdc-logging-core</artifactId>
57 <version>${project.version}</version>
vempoacd7ec02018-01-28 14:39:56 +020058 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020059 </dependency>
60 <dependency>
AviZi280f8012017-06-09 02:39:56 +030061 <groupId>org.openecomp.sdc.common</groupId>
62 <artifactId>openecomp-configuration-management-core</artifactId>
63 <version>${openecomp.sdc.common.version}</version>
64 <scope>runtime</scope>
65 <exclusions>
66 <exclusion>
67 <groupId>org.slf4j</groupId>
68 <artifactId>slf4j-log4j12</artifactId>
69 </exclusion>
70 </exclusions>
Michael Landof5f13c42017-02-19 12:35:04 +020071 </dependency>
AviZi280f8012017-06-09 02:39:56 +030072 <dependency>
73 <groupId>org.openecomp.sdc.common</groupId>
74 <artifactId>openecomp-configuration-management-api</artifactId>
75 <version>${openecomp.sdc.common.version}</version>
76 </dependency>
priyanshue812c4f2018-03-05 15:00:10 +053077 <dependency>
78 <groupId>org.openecomp.sdc.sdc-tosca</groupId>
79 <artifactId>sdc-tosca</artifactId>
80 <version>${sdc-tosca-parser.version}</version>
81 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020082 </dependencies>
AviZi280f8012017-06-09 02:39:56 +030083 <build>
84 <plugins>
85 <plugin>
86 <groupId>org.apache.maven.plugins</groupId>
87 <artifactId>maven-surefire-plugin</artifactId>
88 <version>${mvn.surefire.version}</version>
89 <configuration>
90 <useSystemClassLoader>false</useSystemClassLoader>
91 <redirectTestOutputToFile>true</redirectTestOutputToFile>
92 </configuration>
93 </plugin>
94 </plugins>
95 </build>
Michael Landof5f13c42017-02-19 12:35:04 +020096
AviZi280f8012017-06-09 02:39:56 +030097</project>