blob: be3c3509add43c5c8f7216c1ee9e98f608ce10b5 [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 <groupId>org.openecomp.core</groupId>
7 <name>openecomp-tosca-lib</name>
8 <dependencies>
9 <dependency>
10 <groupId>org.openecomp.core</groupId>
11 <artifactId>openecomp-utilities-lib</artifactId>
12 <version>1.0-SNAPSHOT</version>
13 </dependency>
14 <dependency>
15 <groupId>org.openecomp.sdc</groupId>
16 <artifactId>openecomp-sdc-datatypes-lib</artifactId>
17 <version>1.0-SNAPSHOT</version>
18 </dependency>
19 <dependency>
20 <groupId>org.openecomp.core</groupId>
21 <artifactId>openecomp-common-lib</artifactId>
22 <version>${project.version}</version>
23 </dependency>
24 <dependency>
25 <groupId>ch.qos.logback</groupId>
26 <artifactId>logback-classic</artifactId>
27 <version>${logback.version}</version>
28 </dependency>
29 <dependency>
30 <groupId>junit</groupId>
31 <artifactId>junit</artifactId>
32 <version>RELEASE</version>
33 <scope>test</scope>
34 </dependency>
35 <dependency>
36 <groupId>org.openecomp.sdc</groupId>
37 <artifactId>openecomp-sdc-logging-core</artifactId>
38 <version>1.0-SNAPSHOT</version>
39 </dependency>
40 <dependency>
41 <groupId>org.openecomp.sdc.common</groupId>
42 <artifactId>openecomp-configuration-management-core</artifactId>
43 <version>1707.0.0-SNAPSHOT</version>
44 <scope>runtime</scope>
45 <exclusions>
46 <exclusion>
47 <groupId>org.slf4j</groupId>
48 <artifactId>slf4j-log4j12</artifactId>
49 </exclusion>
50 </exclusions>
51 </dependency>
52 <dependency>
53 <groupId>org.openecomp.sdc.common</groupId>
54 <artifactId>openecomp-configuration-management-api</artifactId>
55 <version>1707.0.0-SNAPSHOT</version>
56 </dependency>
57 <dependency>
58 <groupId>org.openecomp.sdc.common</groupId>
59 <artifactId>openecomp-tosca-datatype</artifactId>
60 <version>1707.0.0-SNAPSHOT</version>
61 </dependency>
62 </dependencies>
63 <build>
64 <plugins>
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-surefire-plugin</artifactId>
68 <version>2.19.1</version>
69 <configuration>
70 <useSystemClassLoader>false</useSystemClassLoader>
71 <redirectTestOutputToFile>true</redirectTestOutputToFile>
72 </configuration>
73 </plugin>
74 </plugins>
75 </build>
76
77
78 <artifactId>openecomp-tosca-lib</artifactId>
79
80 <parent>
81 <artifactId>openecomp-sdc-lib</artifactId>
82 <groupId>org.openecomp.sdc</groupId>
83 <version>1.0-SNAPSHOT</version>
84 </parent>
85
86
87</project>