Removed reference to MDC for logging
[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.2.0-SNAPSHOT</version>
14         <relativePath>..</relativePath>
15     </parent>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.openecomp.sdc.common</groupId>
20             <artifactId>openecomp-tosca-datatype</artifactId>
21             <version>${openecomp.sdc.common.version}</version>
22         </dependency>
23         <dependency>
24             <groupId>org.openecomp.sdc.core</groupId>
25             <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>
34             <groupId>org.openecomp.sdc.core</groupId>
35             <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>
41             <version>${logback.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>junit</groupId>
45             <artifactId>junit</artifactId>
46             <version>${junit.version}</version>
47             <scope>test</scope>
48         </dependency>
49         <dependency>
50             <groupId>org.openecomp.sdc</groupId>
51             <artifactId>openecomp-sdc-logging-core</artifactId>
52             <version>${project.version}</version>
53             <scope>runtime</scope>
54         </dependency>
55         <dependency>
56             <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>
66         </dependency>
67         <dependency>
68             <groupId>org.openecomp.sdc.common</groupId>
69             <artifactId>openecomp-configuration-management-api</artifactId>
70             <version>${openecomp.sdc.common.version}</version>
71         </dependency>
72     </dependencies>
73     <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>
86
87 </project>