blob: c5a59693beb14f49315e2c27e4a86407391f6e7b [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
shrikantawachar9a699252018-04-06 11:07:00 +053016
Michael Landof5f13c42017-02-19 12:35:04 +020017
18 <dependencies>
19 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030020 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020021 <artifactId>openecomp-utilities-lib</artifactId>
22 <version>${project.version}</version>
23 </dependency>
24 <dependency>
25 <groupId>org.openecomp.sdc</groupId>
26 <artifactId>openecomp-sdc-validation-core</artifactId>
27 <version>${project.version}</version>
28 </dependency>
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-nosqldb-core</artifactId>
32 <version>${project.version}</version>
33 </dependency>
34 <dependency>
35 <groupId>org.testng</groupId>
36 <artifactId>testng</artifactId>
AviZi280f8012017-06-09 02:39:56 +030037 <version>${testng.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020038 <scope>test</scope>
39 </dependency>
40 <dependency>
41 <groupId>junit</groupId>
42 <artifactId>junit</artifactId>
AviZi280f8012017-06-09 02:39:56 +030043 <version>${junit.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020044 <scope>test</scope>
45 </dependency>
46 <dependency>
47 <groupId>com.fasterxml.jackson.dataformat</groupId>
48 <artifactId>jackson-dataformat-xml</artifactId>
AviZi280f8012017-06-09 02:39:56 +030049 <version>${jackson.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020050 </dependency>
51 <dependency>
52 <groupId>org.codehaus.woodstox</groupId>
53 <artifactId>woodstox-core-asl</artifactId>
AviZi280f8012017-06-09 02:39:56 +030054 <version>${woodstox.version}</version>
Michael Landof5f13c42017-02-19 12:35:04 +020055 </dependency>
56 <dependency>
57 <groupId>org.openecomp.sdc</groupId>
58 <artifactId>openecomp-sdc-action-core</artifactId>
59 <version>${project.version}</version>
60 </dependency>
61 <dependency>
62 <groupId>org.openecomp.sdc</groupId>
63 <artifactId>openecomp-sdc-versioning-core</artifactId>
64 <version>${project.version}</version>
65 </dependency>
66 <dependency>
AviZi280f8012017-06-09 02:39:56 +030067 <groupId>org.openecomp.sdc</groupId>
68 <artifactId>openecomp-sdc-logging-api</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020069 <version>${project.version}</version>
70 </dependency>
71 <dependency>
AviZi280f8012017-06-09 02:39:56 +030072 <groupId>org.openecomp.sdc</groupId>
73 <artifactId>openecomp-sdc-logging-core</artifactId>
Michael Landof5f13c42017-02-19 12:35:04 +020074 <version>${project.version}</version>
vempoacd7ec02018-01-28 14:39:56 +020075 <scope>runtime</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020076 </dependency>
77 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020078
AviZi280f8012017-06-09 02:39:56 +030079
80</project>