blob: 8308d92a00a6bdada8eb6d9d9b4992be226c7c48 [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 Lando9744a932017-02-28 08:22:59 +020016 <dependency>
17 <groupId>com.google.code.gson</groupId>
18 <artifactId>gson</artifactId>
19 <version>2.3.1</version>
20 <scope>provided</scope>
21 </dependency>
Michael Lando451a3402017-02-19 10:28:42 +020022
23 <dependency>
24 <groupId>org.json</groupId>
25 <artifactId>json</artifactId>
26 <version>20131018</version>
27 <scope>compile</scope>
28 </dependency>
29
30 <dependency>
31 <groupId>org.openecomp.sdc</groupId>
32 <artifactId>sdc-distribution-client</artifactId>
33 <version>1.1.2</version>
34 <scope>compile</scope>
35 </dependency>
36
37 <dependency>
38 <groupId>org.openecomp.sdc</groupId>
39 <artifactId>asdc-tests</artifactId>
40 <version>${asdc.full.version}</version>
41 <scope>compile</scope>
42 </dependency>
43
44 <dependency>
45 <groupId>junit</groupId>
46 <artifactId>junit</artifactId>
47 <scope>compile</scope>
48 </dependency>
49
50 </dependencies>
51
52 <build>
53 <plugins>
54
55 <!-- ================================================== -->
56 <!-- Set the JDK compiler version. -->
57 <!-- ================================================== -->
58 <plugin>
59 <groupId>org.apache.maven.plugins</groupId>
60 <artifactId>maven-compiler-plugin</artifactId>
61 <version>2.5.1</version>
62 <inherited>true</inherited>
63 <configuration>
64 <source>1.8</source>
65 <target>1.8</target>
66 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70</project>