diff options
author | 2020-02-28 15:26:36 +0800 | |
---|---|---|
committer | 2020-02-29 14:57:46 +0800 | |
commit | cc269e95c1a0d8e57d0d70889ce7c07f1d071db8 (patch) | |
tree | d6ae75568f62aa066c50107839eb9007ed164f34 | |
parent | a38445e24d1d508b0c1e039147eee48b06d88d37 (diff) |
Generate coverage data for sonar cloud
Issue-ID: MSB-451
Signed-off-by: Huabing Zhao <zhao.huabing@zte.com.cn>
Change-Id: I711745c9e6de0b431fb1eb5f03ff6a7c2de7c020
-rw-r--r-- | pom.xml | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -21,7 +21,7 @@ <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> - <version>2.0.0</version> + <version>3.0.0</version> </parent> <groupId>org.onap.msb.discovery</groupId> @@ -89,6 +89,15 @@ <!-- Official maven plugins, alpha-sorted by artifactId. We do not need to specify the groupId. --> <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <release combine.self="override"></release> + <source>1.8</source> + <target>1.8</target> + </configuration> + </plugin> + + <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> </plugin> |