blob: f2db4d382d7066102ee4e490253a69345da4dd89 [file] [log] [blame]
Avi Zivb8e2faf2017-07-18 19:45:38 +03001<?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
7 <parent>
8 <groupId>org.openecomp.sdc</groupId>
9 <artifactId>backend</artifactId>
Michael Landod8a0dea2018-06-02 19:23:27 +030010 <version>1.3.0-SNAPSHOT</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030011 </parent>
12
13 <artifactId>openecomp-sdc-healthcheck-manager</artifactId>
Michael Landod8a0dea2018-06-02 19:23:27 +030014 <version>1.3.0-SNAPSHOT</version>
ayalabenc42dd9b2018-05-24 15:36:27 +030015
Avi Zivb8e2faf2017-07-18 19:45:38 +030016 <dependencies>
17 <dependency>
18 <groupId>org.openecomp.sdc.core</groupId>
19 <artifactId>openecomp-utilities-lib</artifactId>
20 <version>${project.version}</version>
21 </dependency>
22
23 <dependency>
24 <groupId>org.openecomp.sdc</groupId>
25 <artifactId>openecomp-sdc-logging-api</artifactId>
26 <version>${project.version}</version>
27 </dependency>
28 <dependency>
29 <groupId>org.openecomp.sdc</groupId>
30 <artifactId>openecomp-sdc-logging-core</artifactId>
31 <version>${project.version}</version>
vempoacd7ec02018-01-28 14:39:56 +020032 <scope>runtime</scope>
Avi Zivb8e2faf2017-07-18 19:45:38 +030033 </dependency>
34 <dependency>
35 <groupId>org.openecomp.sdc.core</groupId>
36 <artifactId>openecomp-facade-core</artifactId>
37 <version>${project.version}</version>
38 </dependency>
39 <dependency>
Avi Zivb8e2faf2017-07-18 19:45:38 +030040 <groupId>org.openecomp.sdc.core</groupId>
41 <artifactId>openecomp-zusammen-core</artifactId>
42 <version>${project.version}</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030043 </dependency>
44 <dependency>
45 <groupId>org.mockito</groupId>
46 <artifactId>mockito-all</artifactId>
vempo68945dd2018-07-08 11:29:54 +030047 <version>${mockito.all.version}</version>
48 <scope>test</scope>
Avi Zivb8e2faf2017-07-18 19:45:38 +030049 </dependency>
50 <dependency>
51 <groupId>junit</groupId>
52 <artifactId>junit</artifactId>
vempo68945dd2018-07-08 11:29:54 +030053 <version>${junit.version}</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030054 <scope>test</scope>
55 </dependency>
56 </dependencies>
57 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-jar-plugin</artifactId>
vempofad94e42017-09-03 16:35:04 +030062 <version>${mvn.jar.version}</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030063 <configuration>
64 <archive>
65 <manifest>
66 <addDefaultImplementationEntries>
67 true
68 </addDefaultImplementationEntries>
69 </manifest>
70 </archive>
71 </configuration>
72 </plugin>
73 </plugins>
74 </build>
Avi Ziv61070c92017-07-26 17:37:57 +030075</project>