256c24f42cda358dbd0dc63b5cce1f8493298b1d
[sdc.git] / openecomp-be / lib / openecomp-tosca-lib / pom.xml
1 <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.sdc.core</groupId>
7     <name>openecomp-tosca-lib</name>
8     <artifactId>openecomp-tosca-lib</artifactId>
9
10     <parent>
11         <artifactId>openecomp-sdc-lib</artifactId>
12         <groupId>org.openecomp.sdc</groupId>
13         <version>1.1.0-SNAPSHOT</version>
14         <relativePath>..</relativePath>
15     </parent>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.openecomp.sdc.core</groupId>
20             <artifactId>openecomp-utilities-lib</artifactId>
21             <version>${project.version}</version>
22         </dependency>
23         <dependency>
24             <groupId>org.openecomp.sdc</groupId>
25             <artifactId>openecomp-sdc-datatypes-lib</artifactId>
26             <version>${project.version}</version>
27         </dependency>
28         <dependency>
29             <groupId>org.openecomp.sdc.core</groupId>
30             <artifactId>openecomp-common-lib</artifactId>
31             <version>${project.version}</version>
32         </dependency>
33         <dependency>
34             <groupId>ch.qos.logback</groupId>
35             <artifactId>logback-classic</artifactId>
36             <version>${logback.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>junit</groupId>
40             <artifactId>junit</artifactId>
41             <version>${junit.version}</version>
42             <scope>test</scope>
43         </dependency>
44         <dependency>
45             <groupId>org.openecomp.sdc</groupId>
46             <artifactId>openecomp-sdc-logging-core</artifactId>
47             <version>${project.version}</version>
48         </dependency>
49         <dependency>
50             <groupId>org.openecomp.sdc.common</groupId>
51             <artifactId>openecomp-configuration-management-core</artifactId>
52             <version>${openecomp.sdc.common.version}</version>
53             <scope>runtime</scope>
54             <exclusions>
55                 <exclusion>
56                     <groupId>org.slf4j</groupId>
57                     <artifactId>slf4j-log4j12</artifactId>
58                 </exclusion>
59             </exclusions>
60         </dependency>
61         <dependency>
62             <groupId>org.openecomp.sdc.common</groupId>
63             <artifactId>openecomp-configuration-management-api</artifactId>
64             <version>${openecomp.sdc.common.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>org.openecomp.sdc.common</groupId>
68             <artifactId>openecomp-tosca-datatype</artifactId>
69             <version>${openecomp.sdc.common.version}</version>
70         </dependency>
71     </dependencies>
72     <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>
85
86 </project>