blob: a324ee0b060c9febbd7346d5013077f50e062fda [file] [log] [blame]
AviZi280f8012017-06-09 02:39:56 +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>att-sdc-translator-impl</name>
7 <artifactId>att-sdc-translator-impl</artifactId>
8
9
10 <parent>
11 <groupId>org.openecomp.sdc</groupId>
12 <artifactId>openecomp-sdc-lib</artifactId>
Michael Lando0ad3c802017-09-19 16:32:59 +030013 <version>1.2.0-SNAPSHOT</version>
AviZi280f8012017-06-09 02:39:56 +030014 <relativePath>../..</relativePath>
15 </parent>
16
17 <dependencies>
18 <dependency>
19 <groupId>ch.qos.logback</groupId>
20 <artifactId>logback-classic</artifactId>
21 <version>${logback.version}</version>
22 </dependency>
23 <dependency>
24 <groupId>junit</groupId>
25 <artifactId>junit</artifactId>
26 <version>${junit.version}</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>
Michael Lando61f98d42017-06-09 04:54:54 +030035 <groupId>org.openecomp.sdc.core</groupId>
AviZi280f8012017-06-09 02:39:56 +030036 <artifactId>openecomp-heat-lib</artifactId>
37 <version>${project.version}</version>
38 </dependency>
39 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030040 <groupId>org.openecomp.sdc.core</groupId>
AviZi280f8012017-06-09 02:39:56 +030041 <artifactId>openecomp-tosca-lib</artifactId>
42 <version>${project.version}</version>
43 </dependency>
Avi Zivb8e2faf2017-07-18 19:45:38 +030044 <dependency>
45 <groupId>org.openecomp.sdc.common</groupId>
46 <artifactId>openecomp-tosca-datatype</artifactId>
47 <version>${openecomp.sdc.common.version}</version>
48 </dependency>
AviZi280f8012017-06-09 02:39:56 +030049
50
51 <!-- need to be changed to sdk -->
52 <dependency>
53 <groupId>org.openecomp.sdc</groupId>
54 <artifactId>openecomp-sdc-translator-core</artifactId>
55 <version>${project.version}</version>
56 </dependency>
57 </dependencies>
58 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.maven.plugins</groupId>
62 <artifactId>maven-surefire-plugin</artifactId>
63 <version>${mvn.surefire.version}</version>
64 <configuration>
65 <useSystemClassLoader>false</useSystemClassLoader>
Tal Gitelman68ccc452017-06-22 18:23:07 +030066 <skipTests>true</skipTests>
AviZi280f8012017-06-09 02:39:56 +030067 </configuration>
68 </plugin>
69 </plugins>
70 </build>
71</project>