Specified test scope for junit/testng/mockito
[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     <version>1.3.0-SNAPSHOT</version>
15
16     <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>
32             <scope>runtime</scope>
33         </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>
40             <groupId>org.openecomp.sdc.core</groupId>
41             <artifactId>openecomp-zusammen-core</artifactId>
42             <version>${project.version}</version>
43         </dependency>
44         <dependency>
45             <groupId>org.mockito</groupId>
46             <artifactId>mockito-all</artifactId>
47             <version>${mockito.all.version}</version>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>junit</groupId>
52             <artifactId>junit</artifactId>
53             <version>${junit.version}</version>
54             <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>
62                 <version>${mvn.jar.version}</version>
63                 <configuration>
64                     <archive>
65                         <manifest>
66                              <addDefaultImplementationEntries>
67                                 true
68                             </addDefaultImplementationEntries>
69                         </manifest>
70                     </archive>
71                 </configuration>
72             </plugin>
73         </plugins>
74     </build>
75 </project>