blob: fd1cda101e3c64ea96351c1a9c994c14d2b1572c [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3 xmlns="http://maven.apache.org/POM/4.0.0"
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>
Michael Landoebd7c8f2017-03-15 20:38:00 +020010 <version>1.1.0-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020011 </parent>
12
13 <artifactId>openecomp-sdc-action-manager</artifactId>
14
15 <dependencies>
16 <dependency>
Michael Landoefa037d2017-02-19 12:57:33 +020017 <groupId>org.openecomp.sdc</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020018 <artifactId>openecomp-utilities-lib</artifactId>
19 <version>${project.version}</version>
20 </dependency>
21 <dependency>
22 <groupId>org.openecomp.sdc</groupId>
23 <artifactId>openecomp-sdc-validation-core</artifactId>
24 <version>${project.version}</version>
25 </dependency>
26 <dependency>
Michael Landoefa037d2017-02-19 12:57:33 +020027 <groupId>org.openecomp.sdc</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020028 <artifactId>openecomp-nosqldb-core</artifactId>
29 <version>${project.version}</version>
30 </dependency>
31 <dependency>
32 <groupId>org.testng</groupId>
33 <artifactId>testng</artifactId>
34 <version>6.9.10</version>
35 <scope>test</scope>
36 </dependency>
37 <dependency>
38 <groupId>junit</groupId>
39 <artifactId>junit</artifactId>
40 <version>RELEASE</version>
41 <scope>test</scope>
42 </dependency>
43 <dependency>
44 <groupId>com.fasterxml.jackson.dataformat</groupId>
45 <artifactId>jackson-dataformat-xml</artifactId>
46 <version>2.7.4</version>
47 </dependency>
48 <dependency>
49 <groupId>org.codehaus.woodstox</groupId>
50 <artifactId>woodstox-core-asl</artifactId>
51 <version>4.4.1</version>
52 </dependency>
53 <dependency>
54 <groupId>org.openecomp.sdc</groupId>
55 <artifactId>openecomp-sdc-action-core</artifactId>
56 <version>${project.version}</version>
57 </dependency>
58 <dependency>
59 <groupId>org.openecomp.sdc</groupId>
60 <artifactId>openecomp-sdc-versioning-core</artifactId>
61 <version>${project.version}</version>
62 </dependency>
63 <dependency>
64 <groupId>org.openecomp.sdc.sdc_common</groupId>
65 <artifactId>openecomp-logging-api</artifactId>
66 <version>${project.version}</version>
67 </dependency>
68 <dependency>
69 <groupId>org.openecomp.sdc.sdc_common</groupId>
70 <artifactId>openecomp-logging-core</artifactId>
71 <version>${project.version}</version>
72 </dependency>
73 </dependencies>
74 <build>
75 <plugins>
76 <plugin>
77 <groupId>org.apache.maven.plugins</groupId>
78 <artifactId>maven-surefire-plugin</artifactId>
79 <version>2.19.1</version>
80 <configuration>
81 <skipTests>true</skipTests>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
86
87</project>