blob: f903b5f118a1e4f012d701751fba868f691a3561 [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 Lando17873c42018-05-27 09:07:08 +030010 <version>1.2.0-SNAPSHOT</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030011 </parent>
12
13 <artifactId>openecomp-sdc-healthcheck-manager</artifactId>
Michael Lando17873c42018-05-27 09:07:08 +030014 <version>1.2.0-SNAPSHOT</version>
ayalabenc42dd9b2018-05-24 15:36:27 +030015
16
17 <properties>
18 <jacoco.skip>true</jacoco.skip> <sonar.skip>true</sonar.skip>
19 </properties>
20
Avi Zivb8e2faf2017-07-18 19:45:38 +030021 <dependencies>
22 <dependency>
23 <groupId>org.openecomp.sdc.core</groupId>
24 <artifactId>openecomp-utilities-lib</artifactId>
25 <version>${project.version}</version>
26 </dependency>
27
28 <dependency>
29 <groupId>org.openecomp.sdc</groupId>
30 <artifactId>openecomp-sdc-logging-api</artifactId>
31 <version>${project.version}</version>
32 </dependency>
33 <dependency>
34 <groupId>org.openecomp.sdc</groupId>
35 <artifactId>openecomp-sdc-logging-core</artifactId>
36 <version>${project.version}</version>
vempoacd7ec02018-01-28 14:39:56 +020037 <scope>runtime</scope>
Avi Zivb8e2faf2017-07-18 19:45:38 +030038 </dependency>
39 <dependency>
40 <groupId>org.openecomp.sdc.core</groupId>
41 <artifactId>openecomp-facade-core</artifactId>
42 <version>${project.version}</version>
43 </dependency>
44 <dependency>
Avi Zivb8e2faf2017-07-18 19:45:38 +030045 <groupId>org.openecomp.sdc.core</groupId>
46 <artifactId>openecomp-zusammen-core</artifactId>
47 <version>${project.version}</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030048 </dependency>
49 <dependency>
50 <groupId>org.mockito</groupId>
51 <artifactId>mockito-all</artifactId>
52 <version>1.10.19</version>
53 </dependency>
54 <dependency>
55 <groupId>junit</groupId>
56 <artifactId>junit</artifactId>
57 <version>4.12</version>
58 <scope>test</scope>
59 </dependency>
60 </dependencies>
61 <build>
62 <plugins>
63 <plugin>
64 <groupId>org.apache.maven.plugins</groupId>
65 <artifactId>maven-jar-plugin</artifactId>
vempofad94e42017-09-03 16:35:04 +030066 <version>${mvn.jar.version}</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030067 <configuration>
68 <archive>
69 <manifest>
70 <addDefaultImplementationEntries>
71 true
72 </addDefaultImplementationEntries>
73 </manifest>
74 </archive>
75 </configuration>
76 </plugin>
77 </plugins>
78 </build>
Avi Ziv61070c92017-07-26 17:37:57 +030079</project>