pom update
[sdc.git] / distribution-ci / pom.xml
1 <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>
16                 <!-- yaml to object converter -->
17                 <dependency>
18                         <groupId>org.yaml</groupId>
19                         <artifactId>snakeyaml</artifactId>
20                         <version>1.14</version>
21                         <scope>provided</scope>
22                 </dependency>
23                 <dependency>
24                         <groupId>com.google.code.gson</groupId>
25                         <artifactId>gson</artifactId>
26                         <version>2.3.1</version>
27                         <scope>provided</scope>
28                 </dependency>
29                 
30                 <dependency>
31                         <groupId>org.json</groupId>
32                         <artifactId>json</artifactId>
33                         <version>20131018</version>
34                         <scope>compile</scope>
35                 </dependency>
36                 
37                 <dependency>
38                         <groupId>org.openecomp.sdc</groupId>
39                         <artifactId>sdc-distribution-client</artifactId>
40                         <version>1.1.2</version>
41                         <scope>compile</scope>
42                 </dependency>
43
44                 <dependency>
45                         <groupId>org.openecomp.sdc</groupId>
46                         <artifactId>asdc-tests</artifactId>
47                         <version>${asdc.full.version}</version>
48                         <scope>compile</scope>
49                 </dependency> 
50
51                 <dependency>
52                         <groupId>junit</groupId>
53                         <artifactId>junit</artifactId>
54                         <scope>compile</scope>
55                 </dependency>
56
57         </dependencies>
58
59         <build>
60                 <plugins>
61
62                         <!-- ================================================== -->
63                         <!-- Set the JDK compiler version. -->
64                         <!-- ================================================== -->
65                         <plugin>
66                                 <groupId>org.apache.maven.plugins</groupId>
67                                 <artifactId>maven-compiler-plugin</artifactId>
68                                 <version>2.5.1</version>
69                                 <inherited>true</inherited>
70                                 <configuration>
71                                         <source>1.8</source>
72                                         <target>1.8</target>
73                                 </configuration>
74                         </plugin>
75                 </plugins>
76         </build>
77 </project>