Jacoco doesn't show coverage for tests that use PowerMock
[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" xmlns="http://maven.apache.org/POM/4.0.0"
18          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
19     <modelVersion>4.0.0</modelVersion>
20
21     <name>openecomp-sdc</name>
22     <artifactId>openecomp-sdc</artifactId>
23     <packaging>pom</packaging>
24
25     <url>http://maven.apache.org</url>
26
27     <parent>
28         <groupId>org.openecomp.sdc</groupId>
29         <artifactId>sdc-onboarding</artifactId>
30         <version>1.5.0-SNAPSHOT</version>
31         <relativePath>../onboarding/pom.xml</relativePath>
32     </parent>
33
34     <dependencies>
35         <dependency>
36             <groupId>org.togglz</groupId>
37             <artifactId>togglz-core</artifactId>
38             <version>${togglz.version}</version>
39         </dependency>
40         <dependency>
41             <groupId>org.togglz</groupId>
42             <artifactId>togglz-testing</artifactId>
43             <version>${togglz.version}</version>
44             <scope>test</scope>
45         </dependency>
46     </dependencies>
47
48     <build>
49         <plugins>
50             <plugin>
51                 <groupId>org.apache.maven.plugins</groupId>
52                 <artifactId>maven-compiler-plugin</artifactId>
53                 <version>${mvn.compiler.version}</version>
54             </plugin>
55             <plugin>
56                 <groupId>org.apache.maven.plugins</groupId>
57                 <artifactId>maven-jar-plugin</artifactId>
58                 <version>${mvn.jar.version}</version>
59             </plugin>
60         </plugins>
61     </build>
62
63     <modules>
64         <module>/api</module>
65         <module>/lib</module>
66         <module>/tools/swagger-ui</module>
67         <module>/tools/zusammen-tools</module>
68         <module>/backend</module>
69     </modules>
70
71     <profiles>
72         <profile>
73             <id>docker</id>
74             <activation>
75                 <activeByDefault>false</activeByDefault>
76             </activation>
77             <modules>
78                 <module>/dist</module>
79             </modules>
80         </profile>
81     </profiles>
82 </project>
83