blob: 38122c73c07dd0ba9a4edcc932cbac49eba17a0f [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>
Michael Landof5f13c42017-02-19 12:35:04 +020053 </dependency>
54 <dependency>
AviZi280f8012017-06-09 02:39:56 +030055 <groupId>org.openecomp.sdc.common</groupId>
56 <artifactId>openecomp-configuration-management-core</artifactId>
57 <version>${openecomp.sdc.common.version}</version>
58 <scope>runtime</scope>
59 <exclusions>
60 <exclusion>
61 <groupId>org.slf4j</groupId>
62 <artifactId>slf4j-log4j12</artifactId>
63 </exclusion>
64 </exclusions>
Michael Landof5f13c42017-02-19 12:35:04 +020065 </dependency>
AviZi280f8012017-06-09 02:39:56 +030066 <dependency>
67 <groupId>org.openecomp.sdc.common</groupId>
68 <artifactId>openecomp-configuration-management-api</artifactId>
69 <version>${openecomp.sdc.common.version}</version>
70 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020071 </dependencies>
AviZi280f8012017-06-09 02:39:56 +030072 <build>
73 <plugins>
74 <plugin>
75 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-surefire-plugin</artifactId>
77 <version>${mvn.surefire.version}</version>
78 <configuration>
79 <useSystemClassLoader>false</useSystemClassLoader>
80 <redirectTestOutputToFile>true</redirectTestOutputToFile>
81 </configuration>
82 </plugin>
83 </plugins>
84 </build>
Michael Landof5f13c42017-02-19 12:35:04 +020085
AviZi280f8012017-06-09 02:39:56 +030086</project>