blob: b614e2f2db6a3d1feb3f59cf558ade0b471d823c [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5 <modelVersion>4.0.0</modelVersion>
6
7 <parent>
8 <groupId>org.openecomp.sdc</groupId>
9 <artifactId>backend</artifactId>
10 <version>1.0.0-SNAPSHOT</version>
11 </parent>
12
13 <groupId>org.openecomp.sdc</groupId>
14 <artifactId>openecomp-sdc-application-config-manager</artifactId>
15
16
17 <dependencies>
18 <dependency>
19 <groupId>com.google.code.gson</groupId>
20 <artifactId>gson</artifactId>
21 <version>2.3.1</version>
22 <scope>test</scope>
23 </dependency>
24 <dependency>
25 <groupId>org.yaml</groupId>
26 <artifactId>snakeyaml</artifactId>
27 <version>1.14</version>
28 <scope>test</scope>
29 </dependency>
30 <dependency>
Michael Landoefa037d2017-02-19 12:57:33 +020031 <groupId>org.openecomp.sdc</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020032 <artifactId>openecomp-config-lib</artifactId>
33 <version>${project.version}</version>
34 </dependency>
35 <dependency>
36 <groupId>org.testng</groupId>
37 <artifactId>testng</artifactId>
38 <version>6.9.10</version>
39 <scope>test</scope>
40 </dependency>
41 </dependencies>
42 <build>
43 <plugins>
44 <plugin>
45 <groupId>org.apache.maven.plugins</groupId>
46 <artifactId>maven-surefire-plugin</artifactId>
47 <version>2.19.1</version>
48 <configuration>
49 <skipTests>true</skipTests>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54
55</project>