blob: 14b4d7734c7b1cebb192e5359f20e011ba86398c [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>
30 <artifactId>openecomp-sdc-datatypes-lib</artifactId>
31 <version>${project.version}</version>
32 </dependency>
33 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030034 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020035 <artifactId>openecomp-common-lib</artifactId>
36 <version>${project.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>ch.qos.logback</groupId>
40 <artifactId>logback-classic</artifactId>
AviZi280f8012017-06-09 02:39:56 +030041 <version>${logback.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020042 </dependency>
43 <dependency>
44 <groupId>junit</groupId>
45 <artifactId>junit</artifactId>
AviZi280f8012017-06-09 02:39:56 +030046 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020047 <scope>test</scope>
48 </dependency>
49 <dependency>
AviZi280f8012017-06-09 02:39:56 +030050 <groupId>org.openecomp.sdc</groupId>
51 <artifactId>openecomp-sdc-logging-core</artifactId>
52 <version>${project.version}</version>
vempoacd7ec02018-01-28 14:39:56 +020053 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020054 </dependency>
55 <dependency>
AviZi280f8012017-06-09 02:39:56 +030056 <groupId>org.openecomp.sdc.common</groupId>
57 <artifactId>openecomp-configuration-management-core</artifactId>
58 <version>${openecomp.sdc.common.version}</version>
59 <scope>runtime</scope>
60 <exclusions>
61 <exclusion>
62 <groupId>org.slf4j</groupId>
63 <artifactId>slf4j-log4j12</artifactId>
64 </exclusion>
65 </exclusions>
Michael Landof5f13c42017-02-19 12:35:04 +020066 </dependency>
AviZi280f8012017-06-09 02:39:56 +030067 <dependency>
68 <groupId>org.openecomp.sdc.common</groupId>
69 <artifactId>openecomp-configuration-management-api</artifactId>
70 <version>${openecomp.sdc.common.version}</version>
71 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020072 </dependencies>
AviZi280f8012017-06-09 02:39:56 +030073 <build>
74 <plugins>
75 <plugin>
76 <groupId>org.apache.maven.plugins</groupId>
77 <artifactId>maven-surefire-plugin</artifactId>
78 <version>${mvn.surefire.version}</version>
79 <configuration>
80 <useSystemClassLoader>false</useSystemClassLoader>
81 <redirectTestOutputToFile>true</redirectTestOutputToFile>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
Michael Landof5f13c42017-02-19 12:35:04 +020086
AviZi280f8012017-06-09 02:39:56 +030087</project>