blob: 6872bafccab5b063aa20631e88e1295ba3200bbf [file] [log] [blame]
Michael Landof5f13c42017-02-19 12:35:04 +02001<?xml version="1.0" encoding="UTF-8"?>
AviZi280f8012017-06-09 02:39:56 +03002<project xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Michael Landof5f13c42017-02-19 12:35:04 +02004 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
AviZi280f8012017-06-09 02:39:56 +03007 <artifactId>openecomp-sdc-action-manager</artifactId>
8
Michael Landof5f13c42017-02-19 12:35:04 +02009 <parent>
10 <groupId>org.openecomp.sdc</groupId>
11 <artifactId>backend</artifactId>
Michael Landoebd7c8f2017-03-15 20:38:00 +020012 <version>1.1.0-SNAPSHOT</version>
AviZi280f8012017-06-09 02:39:56 +030013 <relativePath>..</relativePath>
Michael Landof5f13c42017-02-19 12:35:04 +020014 </parent>
15
AviZi280f8012017-06-09 02:39:56 +030016 <build>
17 <plugins>
18 <plugin>
19 <groupId>org.apache.maven.plugins</groupId>
20 <artifactId>maven-surefire-plugin</artifactId>
21 <version>2.12.4</version>
22 <configuration>
23 <skipTests>true</skipTests>
24 </configuration>
25 </plugin>
26 </plugins>
27 </build>
Michael Landof5f13c42017-02-19 12:35:04 +020028
29 <dependencies>
30 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030031 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020032 <artifactId>openecomp-utilities-lib</artifactId>
33 <version>${project.version}</version>
34 </dependency>
35 <dependency>
36 <groupId>org.openecomp.sdc</groupId>
37 <artifactId>openecomp-sdc-validation-core</artifactId>
38 <version>${project.version}</version>
39 </dependency>
40 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030041 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020042 <artifactId>openecomp-nosqldb-core</artifactId>
43 <version>${project.version}</version>
44 </dependency>
45 <dependency>
46 <groupId>org.testng</groupId>
47 <artifactId>testng</artifactId>
AviZi280f8012017-06-09 02:39:56 +030048 <version>${testng.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020049 <scope>test</scope>
50 </dependency>
51 <dependency>
52 <groupId>junit</groupId>
53 <artifactId>junit</artifactId>
AviZi280f8012017-06-09 02:39:56 +030054 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020055 <scope>test</scope>
56 </dependency>
57 <dependency>
58 <groupId>com.fasterxml.jackson.dataformat</groupId>
59 <artifactId>jackson-dataformat-xml</artifactId>
AviZi280f8012017-06-09 02:39:56 +030060 <version>${jackson.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020061 </dependency>
62 <dependency>
63 <groupId>org.codehaus.woodstox</groupId>
64 <artifactId>woodstox-core-asl</artifactId>
AviZi280f8012017-06-09 02:39:56 +030065 <version>${woodstox.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020066 </dependency>
67 <dependency>
68 <groupId>org.openecomp.sdc</groupId>
69 <artifactId>openecomp-sdc-action-core</artifactId>
70 <version>${project.version}</version>
71 </dependency>
72 <dependency>
73 <groupId>org.openecomp.sdc</groupId>
74 <artifactId>openecomp-sdc-versioning-core</artifactId>
75 <version>${project.version}</version>
76 </dependency>
77 <dependency>
AviZi280f8012017-06-09 02:39:56 +030078 <groupId>org.openecomp.sdc</groupId>
79 <artifactId>openecomp-sdc-logging-api</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020080 <version>${project.version}</version>
81 </dependency>
82 <dependency>
AviZi280f8012017-06-09 02:39:56 +030083 <groupId>org.openecomp.sdc</groupId>
84 <artifactId>openecomp-sdc-logging-core</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020085 <version>${project.version}</version>
86 </dependency>
87 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020088
AviZi280f8012017-06-09 02:39:56 +030089
90</project>