Removed dependency on snapshot if same version
[sdc.git] / openecomp-be / backend / openecomp-sdc-healthcheck-manager / pom.xml
1 <?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>
10         <version>1.3.0-SNAPSHOT</version>
11     </parent>
12
13     <artifactId>openecomp-sdc-healthcheck-manager</artifactId>
14
15     <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             <scope>runtime</scope>
32         </dependency>
33         <dependency>
34             <groupId>org.openecomp.sdc.core</groupId>
35             <artifactId>openecomp-facade-core</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>org.openecomp.sdc.core</groupId>
40             <artifactId>openecomp-zusammen-core</artifactId>
41             <version>${project.version}</version>
42         </dependency>
43         <dependency>
44             <groupId>org.mockito</groupId>
45             <artifactId>mockito-all</artifactId>
46             <version>${mockito.all.version}</version>
47             <scope>test</scope>
48         </dependency>
49         <dependency>
50             <groupId>junit</groupId>
51             <artifactId>junit</artifactId>
52             <version>${junit.version}</version>
53             <scope>test</scope>
54         </dependency>
55     </dependencies>
56     <build>
57         <plugins>
58             <plugin>
59                 <groupId>org.apache.maven.plugins</groupId>
60                 <artifactId>maven-jar-plugin</artifactId>
61                 <version>${mvn.jar.version}</version>
62                 <configuration>
63                     <archive>
64                         <manifest>
65                              <addDefaultImplementationEntries>
66                                 true
67                             </addDefaultImplementationEntries>
68                         </manifest>
69                     </archive>
70                 </configuration>
71             </plugin>
72         </plugins>
73     </build>
74 </project>