blob: e921dc780a7fc1c5aabe4388883437df1c6c2bcd [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">
5 <modelVersion>4.0.0</modelVersion>
6
AviZi280f8012017-06-09 02:39:56 +03007 <groupId>org.openecomp.sdc</groupId>
8 <artifactId>openecomp-sdc-application-config-manager</artifactId>
9
Michael Landof5f13c42017-02-19 12:35:04 +020010 <parent>
11 <groupId>org.openecomp.sdc</groupId>
12 <artifactId>backend</artifactId>
Michael Landoebd7c8f2017-03-15 20:38:00 +020013 <version>1.1.0-SNAPSHOT</version>
AviZi280f8012017-06-09 02:39:56 +030014 <relativePath>..</relativePath>
Michael Landof5f13c42017-02-19 12:35:04 +020015 </parent>
16
Michael Landof5f13c42017-02-19 12:35:04 +020017 <build>
18 <plugins>
19 <plugin>
20 <groupId>org.apache.maven.plugins</groupId>
21 <artifactId>maven-surefire-plugin</artifactId>
AviZi280f8012017-06-09 02:39:56 +030022 <version>2.12.4</version>
Michael Landof5f13c42017-02-19 12:35:04 +020023 <configuration>
24 <skipTests>true</skipTests>
25 </configuration>
26 </plugin>
27 </plugins>
28 </build>
AviZi280f8012017-06-09 02:39:56 +030029
30 <dependencies>
31 <dependency>
Michael Lando61f98d42017-06-09 04:54:54 +030032 <groupId>org.openecomp.sdc.core</groupId>
AviZi280f8012017-06-09 02:39:56 +030033 <artifactId>openecomp-config-lib</artifactId>
34 <version>${project.version}</version>
35 </dependency>
36 <dependency>
37 <groupId>org.testng</groupId>
38 <artifactId>testng</artifactId>
39 <version>${testng.version}</version>
40 <scope>test</scope>
41 </dependency>
42 <dependency>
43 <groupId>org.openecomp.sdc</groupId>
44 <artifactId>openecomp-sdc-logging-core</artifactId>
45 <version>${project.version}</version>
46 </dependency>
47 </dependencies>
Michael Landof5f13c42017-02-19 12:35:04 +020048
AviZi280f8012017-06-09 02:39:56 +030049</project>