Create new VSP, onboard from TOSCA file - UI
[sdc.git] / openecomp-be / lib / openecomp-heat-lib / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4
5     <groupId>org.openecomp.sdc.core</groupId>
6     <name>openecomp-heat-lib</name>
7     <artifactId>openecomp-heat-lib</artifactId>
8
9     <parent>
10         <artifactId>openecomp-sdc-lib</artifactId>
11         <groupId>org.openecomp.sdc</groupId>
12         <version>1.1.0-SNAPSHOT</version>
13         <relativePath>..</relativePath>
14     </parent>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.openecomp.sdc.common</groupId>
19             <artifactId>openecomp-configuration-management-core</artifactId>
20             <version>${openecomp.sdc.common.version}</version>
21             <scope>runtime</scope>
22             <exclusions>
23                 <exclusion>
24                     <groupId>org.slf4j</groupId>
25                     <artifactId>slf4j-log4j12</artifactId>
26                 </exclusion>
27             </exclusions>
28         </dependency>
29         <dependency>
30             <groupId>org.openecomp.sdc.common</groupId>
31             <artifactId>openecomp-tosca-datatype</artifactId>
32             <version>${openecomp.sdc.common.version}</version>
33         </dependency>
34         <dependency>
35             <groupId>org.openecomp.sdc.core</groupId>
36             <artifactId>openecomp-utilities-lib</artifactId>
37             <version>${project.version}</version>
38         </dependency>
39         <dependency>
40             <groupId>org.openecomp.sdc</groupId>
41             <artifactId>openecomp-sdc-datatypes-lib</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.openecomp.sdc.core</groupId>
46             <artifactId>openecomp-common-lib</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>ch.qos.logback</groupId>
51             <artifactId>logback-classic</artifactId>
52             <version>${logback.version}</version>
53         </dependency>
54         <dependency>
55             <groupId>junit</groupId>
56             <artifactId>junit</artifactId>
57             <version>${junit.version}</version>
58             <scope>test</scope>
59         </dependency>
60         <dependency>
61             <groupId>org.openecomp.sdc</groupId>
62             <artifactId>openecomp-sdc-validation-api</artifactId>
63             <version>${project.version}</version>
64         </dependency>
65     </dependencies>
66
67     <build>
68         <plugins>
69             <plugin>
70                 <groupId>org.apache.maven.plugins</groupId>
71                 <artifactId>maven-surefire-plugin</artifactId>
72                 <version>${mvn.surefire.version}</version>
73                 <configuration>
74                     <skipTests>true</skipTests>
75                     <useSystemClassLoader>false</useSystemClassLoader>
76                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
77                 </configuration>
78             </plugin>
79         </plugins>
80     </build>
81
82 </project>