Prepare for Junit5
[sdc.git] / openecomp-be / pom.xml
1 <!--
2   ~ Copyright © 2016-2018 European Support Limited
3   ~
4   ~ Licensed under the Apache License, Version 2.0 (the "License");
5   ~ you may not use this file except in compliance with the License.
6   ~ You may obtain a copy of the License at
7   ~
8   ~      http://www.apache.org/licenses/LICENSE-2.0
9   ~
10   ~ Unless required by applicable law or agreed to in writing, software
11   ~ distributed under the License is distributed on an "AS IS" BASIS,
12   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   ~ See the License for the specific language governing permissions and
14   ~ limitations under the License.
15   -->
16
17 <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
18   xmlns="http://maven.apache.org/POM/4.0.0"
19   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
20   <modelVersion>4.0.0</modelVersion>
21
22   <name>openecomp-sdc</name>
23   <artifactId>openecomp-sdc</artifactId>
24   <packaging>pom</packaging>
25
26   <url>http://maven.apache.org</url>
27
28   <parent>
29     <groupId>org.openecomp.sdc</groupId>
30     <artifactId>sdc-onboarding</artifactId>
31     <version>1.7.0-SNAPSHOT</version>
32     <relativePath>../onboarding/pom.xml</relativePath>
33   </parent>
34
35   <dependencies>
36     <!--JUnit Jupiter Engine to depend on the JUnit5 engine and JUnit 5 API -->
37     <dependency>
38       <groupId>org.junit.jupiter</groupId>
39       <artifactId>junit-jupiter-engine</artifactId>
40       <version>${junitJupiter.version}</version>
41       <scope>test</scope>
42     </dependency>
43     <!--JUnit Jupiter Engine to depend on the JUnit4 engine and JUnit 4 API  -->
44     <dependency>
45       <groupId>org.junit.vintage</groupId>
46       <artifactId>junit-vintage-engine</artifactId>
47       <version>${junitJupiter.version}</version>
48     </dependency>
49
50     <dependency>
51       <groupId>com.google.code.bean-matchers</groupId>
52       <artifactId>bean-matchers</artifactId>
53       <version>${bean-matchers.version}</version>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.onap.logging-analytics</groupId>
58       <artifactId>logging-slf4j</artifactId>
59       <version>${onap.logging.version}</version>
60     </dependency>
61     <dependency>
62       <groupId>org.togglz</groupId>
63       <artifactId>togglz-core</artifactId>
64       <version>${togglz.version}</version>
65     </dependency>
66     <dependency>
67       <groupId>org.togglz</groupId>
68       <artifactId>togglz-testing</artifactId>
69       <version>${togglz.version}</version>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.junit.jupiter</groupId>
74       <artifactId>junit-jupiter</artifactId>
75       <version>${junitJupiter.version}</version>
76       <scope>test</scope>
77     </dependency>
78     <dependency>
79       <groupId>org.mockito</groupId>
80       <artifactId>mockito-junit-jupiter</artifactId>
81       <version>${mockitoJupiter.version}</version>
82       <scope>test</scope>
83     </dependency>
84   </dependencies>
85
86   <build>
87     <plugins>
88       <plugin>
89         <groupId>org.apache.maven.plugins</groupId>
90         <artifactId>maven-jar-plugin</artifactId>
91         <version>${mvn.jar.version}</version>
92       </plugin>
93     </plugins>
94   </build>
95
96   <modules>
97     <module>/api</module>
98     <module>/lib</module>
99     <module>/tools/swagger-ui</module>
100     <module>/tools/zusammen-tools</module>
101     <module>/backend</module>
102   </modules>
103
104   <profiles>
105     <profile>
106       <id>docker</id>
107       <activation>
108         <activeByDefault>false</activeByDefault>
109       </activation>
110       <modules>
111         <module>/dist</module>
112       </modules>
113     </profile>
114   </profiles>
115 </project>
116