blob: 88b1bf85ab992c9dd33c45aa5293d2e80c234ca9 [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">
vempodecd2df2018-07-23 19:07:37 +03005
Michael Landof5f13c42017-02-19 12:35:04 +02006 <modelVersion>4.0.0</modelVersion>
7
AviZi280f8012017-06-09 02:39:56 +03008 <artifactId>openecomp-sdc-action-api</artifactId>
9
Michael Landof5f13c42017-02-19 12:35:04 +020010 <parent>
11 <groupId>org.openecomp.sdc</groupId>
12 <artifactId>openecomp-sdc-action-lib</artifactId>
shrek200065f0aa32020-02-02 10:40:15 +020013 <version>1.6.1-SNAPSHOT</version>
Michael Landof5f13c42017-02-19 12:35:04 +020014 </parent>
15
Michael Landof5f13c42017-02-19 12:35:04 +020016 <dependencies>
17 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030018 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020019 <artifactId>openecomp-core-lib</artifactId>
20 <type>pom</type>
21 <version>${project.version}</version>
22 </dependency>
23 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030024 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020025 <artifactId>openecomp-facade-core</artifactId>
26 <version>${project.version}</version>
27 </dependency>
28 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030029 <groupId>org.openecomp.sdc.core</groupId>
Michael Landof5f13c42017-02-19 12:35:04 +020030 <artifactId>openecomp-nosqldb-core</artifactId>
31 <version>${project.version}</version>
32 </dependency>
33 <dependency>
34 <groupId>org.openecomp.sdc</groupId>
35 <artifactId>openecomp-sdc-versioning-api</artifactId>
36 <version>${project.version}</version>
37 </dependency>
38 <dependency>
39 <groupId>com.fasterxml.jackson.core</groupId>
40 <artifactId>jackson-annotations</artifactId>
vempodecd2df2018-07-23 19:07:37 +030041 </dependency>
42 <dependency>
43 <groupId>javax.ws.rs</groupId>
44 <artifactId>javax.ws.rs-api</artifactId>
45 <scope>provided</scope>
Michael Landof5f13c42017-02-19 12:35:04 +020046 </dependency>
Tomasz Golabeka1cbd052019-09-03 13:08:37 +020047 <dependency>
48 <groupId>junit</groupId>
49 <artifactId>junit</artifactId>
50 <version>${junit.version}</version>
51 <scope>test</scope>
52 </dependency>
Michael Landof5f13c42017-02-19 12:35:04 +020053 </dependencies>
54
AviZi280f8012017-06-09 02:39:56 +030055</project>