blob: 95c45309daabc3dec2660bdacda6dabc5a9ae785 [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 <name>openecomp-sdc-translator-impl</name>
7 <artifactId>openecomp-sdc-translator-impl</artifactId>
8
9
10 <parent>
11 <groupId>org.openecomp.sdc</groupId>
12 <artifactId>openecomp-sdc-lib</artifactId>
13 <version>1.0-SNAPSHOT</version>
14 <relativePath>../..</relativePath>
15 </parent>
16
17 <dependencies>
18 <dependency>
19 <groupId>ch.qos.logback</groupId>
20 <artifactId>logback-classic</artifactId>
21 <version>1.1.2</version>
22 </dependency>
23 <dependency>
24 <groupId>junit</groupId>
25 <artifactId>junit</artifactId>
26 <version>RELEASE</version>
27 <scope>test</scope>
28 </dependency>
29 <dependency>
30 <groupId>org.openecomp.sdc</groupId>
31 <artifactId>openecomp-sdc-translator-api</artifactId>
32 <version>${project.version}</version>
33 </dependency>
34 <dependency>
35 <groupId>org.openecomp.core</groupId>
36 <artifactId>openecomp-heat-lib</artifactId>
37 <version>${project.version}</version>
38 </dependency>
39 <dependency>
40 <groupId>org.openecomp.core</groupId>
41 <artifactId>openecomp-tosca-lib</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44
45
46 <!-- need to be changed to sdk -->
47 <dependency>
48 <groupId>org.openecomp.sdc</groupId>
49 <artifactId>openecomp-sdc-translator-core</artifactId>
50 <version>${project.version}</version>
51 </dependency>
52 </dependencies>
53 <build>
54 <plugins>
55 <plugin>
56 <groupId>org.apache.maven.plugins</groupId>
57 <artifactId>maven-surefire-plugin</artifactId>
58 <version>2.19.1</version>
59 <configuration>
60 <useSystemClassLoader>false</useSystemClassLoader>
61 <systemPropertyVariables>
62 <config.location>${project.basedir}/configuration</config.location>
63 </systemPropertyVariables>
64 </configuration>
65 </plugin>
66 </plugins>
67 </build>
68</project>