update sdc version
[sdc.git] / openecomp-be / lib / openecomp-sdc-translator-lib / openecomp-sdc-translator-core / 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     <name>openecomp-sdc-translator-core</name>
7     <artifactId>openecomp-sdc-translator-core</artifactId>
8
9
10     <parent>
11         <groupId>org.openecomp.sdc</groupId>
12         <artifactId>openecomp-sdc-lib</artifactId>
13         <version>1.3.0-SNAPSHOT</version>
14         <relativePath>../..</relativePath>
15     </parent>
16
17     <dependencies>
18         <dependency>
19             <groupId>org.onap.sdc.common</groupId>
20             <artifactId>onap-tosca-datatype</artifactId>
21             <version>${openecomp.sdc.common.version}</version>
22         </dependency>
23         <dependency>
24             <groupId>ch.qos.logback</groupId>
25             <artifactId>logback-classic</artifactId>
26             <version>${logback.version}</version>
27         </dependency>
28         <dependency>
29             <groupId>junit</groupId>
30             <artifactId>junit</artifactId>
31             <version>${junit.version}</version>
32             <scope>test</scope>
33         </dependency>
34
35         <dependency>
36             <groupId>org.mockito</groupId>
37             <artifactId>mockito-all</artifactId>
38             <scope>test</scope>
39             <version>${mockito.all.version}</version>
40         </dependency>
41         <dependency>
42             <groupId>org.openecomp.sdc.core</groupId>
43             <artifactId>openecomp-utilities-lib</artifactId>
44             <version>${project.version}</version>
45         </dependency>
46         <dependency>
47             <groupId>org.openecomp.sdc</groupId>
48             <artifactId>openecomp-sdc-translator-api</artifactId>
49             <version>${project.version}</version>
50         </dependency>
51         <dependency>
52             <groupId>org.openecomp.sdc</groupId>
53             <artifactId>openecomp-sdc-datatypes-lib</artifactId>
54             <version>${project.version}</version>
55         </dependency>
56         <dependency>
57             <groupId>org.openecomp.sdc</groupId>
58             <artifactId>openecomp-sdc-validation-api</artifactId>
59             <version>${project.version}</version>
60         </dependency>
61         <dependency>
62             <groupId>org.openecomp.sdc.core</groupId>
63             <artifactId>openecomp-heat-lib</artifactId>
64             <version>${project.version}</version>
65         </dependency>
66         <dependency>
67             <groupId>commons-io</groupId>
68             <artifactId>commons-io</artifactId>
69             <version>2.5</version>
70         </dependency>
71         <dependency>
72             <groupId>org.openecomp.sdc</groupId>
73             <artifactId>openecomp-sdc-validation-impl</artifactId>
74             <version>${project.version}</version>
75             <scope>test</scope>
76         </dependency>
77
78     </dependencies>
79
80     <build>
81         <plugins>
82             <plugin>
83                 <groupId>org.apache.maven.plugins</groupId>
84                 <artifactId>maven-surefire-plugin</artifactId>
85                 <version>${mvn.surefire.version}</version>
86                 <dependencies>
87                     <dependency>
88                         <groupId>org.apache.maven.surefire</groupId>
89                         <artifactId>surefire-junit47</artifactId>
90                         <version>${mvn.surefire.version}</version>
91                     </dependency>
92                 </dependencies>
93                 <configuration>
94                     <parallel>classes</parallel>
95                     <threadCount>1</threadCount>
96                     <forkCount>${fork.count}</forkCount>
97                     <forkMode>${fork.mode}</forkMode>
98                     <printSummary>false</printSummary>
99                     <redirectTestOutputToFile>true</redirectTestOutputToFile>
100                     <rerunFailingTestsCount>1</rerunFailingTestsCount>
101                     <additionalClasspathElements>
102                         <additionalClasspathElement>${project.basedir}/src/test/resources</additionalClasspathElement>
103                     </additionalClasspathElements>
104                     <systemPropertyVariables>
105                         <logback.configurationFile>src/test/resources/logback-test.xml</logback.configurationFile>
106                     </systemPropertyVariables>
107                     <useSystemClassLoader>${useSystemClassLoader}</useSystemClassLoader>
108                     <skip>${skipTestRun}</skip>
109                 </configuration>
110             </plugin>
111         </plugins>
112     </build>
113
114     <properties>
115         <useSystemClassLoader>false</useSystemClassLoader>
116     </properties>
117
118 </project>