blob: d8603be39a21c98ff75224f9cad555388b7a0b44 [file] [log] [blame]
Michael Lando451a3402017-02-19 10:28:42 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <groupId>org.openecomp.sdc.sdc-main</groupId>
5 <artifactId>distribution-ci</artifactId>
6
7 <parent>
8 <groupId>org.openecomp.sdc</groupId>
9 <artifactId>sdc-main</artifactId>
10 <version>1610.1.3</version>
11 </parent>
12
13
14
15 <dependencies>
Michael Landoc34b77c2017-02-28 19:03:11 +020016
17 <dependency>
18 <groupId>org.testng</groupId>
19 <artifactId>testng</artifactId>
20 <version>6.9.10</version>
21 <scope>test</scope>
22 </dependency>
23
24 <dependency>
25 <groupId>org.slf4j</groupId>
26 <artifactId>slf4j-api</artifactId>
27 <version>1.7.10</version>
28 <scope>compile</scope>
29 </dependency>
30
31 <dependency>
32 <groupId>com.google.guava</groupId>
33 <artifactId>guava</artifactId>
34 <version>${guava.version}</version>
35 <scope>compile</scope>
36 </dependency>
37
38 <dependency>
39 <groupId>org.apache.commons</groupId>
40 <artifactId>commons-lang3</artifactId>
41 <version>${lang3.version}</version>
42 <scope>compile</scope>
43 </dependency>
44
Michael Lando0de99c22017-02-28 10:54:57 +020045 <!-- yaml to object converter -->
46 <dependency>
47 <groupId>org.yaml</groupId>
48 <artifactId>snakeyaml</artifactId>
49 <version>1.14</version>
50 <scope>provided</scope>
51 </dependency>
Michael Lando9744a932017-02-28 08:22:59 +020052 <dependency>
53 <groupId>com.google.code.gson</groupId>
54 <artifactId>gson</artifactId>
55 <version>2.3.1</version>
56 <scope>provided</scope>
57 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020058
59 <dependency>
60 <groupId>org.json</groupId>
61 <artifactId>json</artifactId>
62 <version>20131018</version>
63 <scope>compile</scope>
64 </dependency>
65
66 <dependency>
67 <groupId>org.openecomp.sdc</groupId>
68 <artifactId>sdc-distribution-client</artifactId>
69 <version>1.1.2</version>
70 <scope>compile</scope>
71 </dependency>
72
73 <dependency>
74 <groupId>org.openecomp.sdc</groupId>
75 <artifactId>asdc-tests</artifactId>
76 <version>${asdc.full.version}</version>
77 <scope>compile</scope>
78 </dependency>
79
80 <dependency>
81 <groupId>junit</groupId>
82 <artifactId>junit</artifactId>
Michael Landoc34b77c2017-02-28 19:03:11 +020083 <version>4.12</version>
Michael Lando451a3402017-02-19 10:28:42 +020084 <scope>compile</scope>
85 </dependency>
86
87 </dependencies>
88
89 <build>
90 <plugins>
91
92 <!-- ================================================== -->
93 <!-- Set the JDK compiler version. -->
94 <!-- ================================================== -->
95 <plugin>
96 <groupId>org.apache.maven.plugins</groupId>
97 <artifactId>maven-compiler-plugin</artifactId>
98 <version>2.5.1</version>
99 <inherited>true</inherited>
100 <configuration>
101 <source>1.8</source>
102 <target>1.8</target>
103 </configuration>
104 </plugin>
105 </plugins>
106 </build>
107</project>