blob: e61821fd4608745f993ea1a825bfa615c4299acc [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 Lando0ad3c802017-09-19 16:32:59 +030012 <version>1.2.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>
AviZi280f8012017-06-09 02:39:56 +030023 </configuration>
24 </plugin>
25 </plugins>
26 </build>
Michael Landof5f13c42017-02-19 12:35:04 +020027
28 <dependencies>
29 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030030 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020031 <artifactId>openecomp-utilities-lib</artifactId>
32 <version>${project.version}</version>
33 </dependency>
34 <dependency>
35 <groupId>org.openecomp.sdc</groupId>
36 <artifactId>openecomp-sdc-validation-core</artifactId>
37 <version>${project.version}</version>
38 </dependency>
39 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030040 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020041 <artifactId>openecomp-nosqldb-core</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44 <dependency>
45 <groupId>org.testng</groupId>
46 <artifactId>testng</artifactId>
AviZi280f8012017-06-09 02:39:56 +030047 <version>${testng.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020048 <scope>test</scope>
49 </dependency>
50 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
AviZi280f8012017-06-09 02:39:56 +030053 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020054 <scope>test</scope>
55 </dependency>
56 <dependency>
57 <groupId>com.fasterxml.jackson.dataformat</groupId>
58 <artifactId>jackson-dataformat-xml</artifactId>
AviZi280f8012017-06-09 02:39:56 +030059 <version>${jackson.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020060 </dependency>
61 <dependency>
62 <groupId>org.codehaus.woodstox</groupId>
63 <artifactId>woodstox-core-asl</artifactId>
AviZi280f8012017-06-09 02:39:56 +030064 <version>${woodstox.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020065 </dependency>
66 <dependency>
67 <groupId>org.openecomp.sdc</groupId>
68 <artifactId>openecomp-sdc-action-core</artifactId>
69 <version>${project.version}</version>
70 </dependency>
71 <dependency>
72 <groupId>org.openecomp.sdc</groupId>
73 <artifactId>openecomp-sdc-versioning-core</artifactId>
74 <version>${project.version}</version>
75 </dependency>
76 <dependency>
AviZi280f8012017-06-09 02:39:56 +030077 <groupId>org.openecomp.sdc</groupId>
78 <artifactId>openecomp-sdc-logging-api</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020079 <version>${project.version}</version>
80 </dependency>
81 <dependency>
AviZi280f8012017-06-09 02:39:56 +030082 <groupId>org.openecomp.sdc</groupId>
83 <artifactId>openecomp-sdc-logging-core</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020084 <version>${project.version}</version>
vempoacd7ec02018-01-28 14:39:56 +020085 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020086 </dependency>
87 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020088
AviZi280f8012017-06-09 02:39:56 +030089
90</project>