diff options
author | Huabing Zhao <zhao.huabing@zte.com.cn> | 2020-02-28 15:29:00 +0800 |
---|---|---|
committer | Huabing Zhao <zhao.huabing@zte.com.cn> | 2020-02-29 14:54:45 +0800 |
commit | 233b89619a6ca93e210b7d76c20223fa7601a173 (patch) | |
tree | d0516e4985225bfa2c7723b1c8f55b47b937570f /pom.xml | |
parent | 719802fea6fc36c91a4d142314a8521193eba871 (diff) |
Generate coverage data for sonar cloud
Issue-ID: MSB-451
Signed-off-by: Huabing Zhao <zhao.huabing@zte.com.cn>
Change-Id: I29f082d8fd3c7040762500c81454dd6227376edc
Diffstat (limited to 'pom.xml')
-rw-r--r-- | pom.xml | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -20,7 +20,7 @@ <parent> <groupId>org.onap.oparent</groupId> <artifactId>oparent</artifactId> - <version>2.1.0</version> + <version>3.0.0</version> </parent> <groupId>org.onap.msb.apigateway</groupId> <artifactId>msb-apigateway-parent</artifactId> @@ -81,6 +81,14 @@ <!-- 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> |