blob: 0fd84b8a0f37cdeb8a3189a2160f851223da0473 [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 Lando0ad3c802017-09-19 16:32:59 +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 Lando0ad3c802017-09-19 16:32:59 +030014 <version>1.2.0-SNAPSHOT</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030015 <dependencies>
16 <dependency>
17 <groupId>org.openecomp.sdc.core</groupId>
18 <artifactId>openecomp-utilities-lib</artifactId>
19 <version>${project.version}</version>
20 </dependency>
21
22 <dependency>
23 <groupId>org.openecomp.sdc</groupId>
24 <artifactId>openecomp-sdc-logging-api</artifactId>
25 <version>${project.version}</version>
26 </dependency>
27 <dependency>
28 <groupId>org.openecomp.sdc</groupId>
29 <artifactId>openecomp-sdc-logging-core</artifactId>
30 <version>${project.version}</version>
31 </dependency>
32 <dependency>
33 <groupId>org.openecomp.sdc.core</groupId>
34 <artifactId>openecomp-facade-core</artifactId>
35 <version>${project.version}</version>
36 </dependency>
37 <dependency>
38 <groupId>org.openecomp.sdc</groupId>
39 <artifactId>activity-log-rest-types</artifactId>
40 <version>${project.version}</version>
41 </dependency>
42 <dependency>
Avi Zivb8e2faf2017-07-18 19:45:38 +030043 <groupId>org.openecomp.sdc.core</groupId>
44 <artifactId>openecomp-zusammen-core</artifactId>
45 <version>${project.version}</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030046 </dependency>
47 <dependency>
48 <groupId>org.mockito</groupId>
49 <artifactId>mockito-all</artifactId>
50 <version>1.10.19</version>
51 </dependency>
52 <dependency>
53 <groupId>junit</groupId>
54 <artifactId>junit</artifactId>
55 <version>4.12</version>
56 <scope>test</scope>
57 </dependency>
58 </dependencies>
59 <build>
60 <plugins>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-jar-plugin</artifactId>
vempofad94e42017-09-03 16:35:04 +030064 <version>${mvn.jar.version}</version>
Avi Zivb8e2faf2017-07-18 19:45:38 +030065 <configuration>
66 <archive>
67 <manifest>
68 <addDefaultImplementationEntries>
69 true
70 </addDefaultImplementationEntries>
71 </manifest>
72 </archive>
73 </configuration>
74 </plugin>
75 </plugins>
76 </build>
Avi Ziv61070c92017-07-26 17:37:57 +030077</project>