diff options
author | tkogut <tomasz.kogut@nokia.com> | 2021-02-18 13:40:10 +0100 |
---|---|---|
committer | tkogut <tomasz.kogut@nokia.com> | 2021-02-18 13:40:10 +0100 |
commit | 4c67640edccbbd1820fb658370cad0f666a0e210 (patch) | |
tree | 2d8faf9c57d01431af6216fd19aaa52ac11e12e6 | |
parent | fc80e78b8a7975cf6ea183efdb16e8ff780cc215 (diff) |
Fix sonar reporting problem
Issue-ID: DCAEGEN2-2593
Signed-off-by: tkogut <tomasz.kogut@nokia.com>
Change-Id: Iea88edb42ce87b9074d60520f4c7223f9cc9167e
-rw-r--r-- | Changelog.md | 3 | ||||
-rw-r--r-- | pom.xml | 22 | ||||
-rw-r--r-- | version.properties | 2 |
3 files changed, 9 insertions, 18 deletions
diff --git a/Changelog.md b/Changelog.md index 747a0c5d..c794653e 100644 --- a/Changelog.md +++ b/Changelog.md @@ -42,3 +42,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - [DCAEGEN2-2495](https://jira.onap.org/browse/DCAEGEN2-2495) - Ves Collector is down because of java heap space ## [1.7.10] - 10/02/2021 - [DCAEGEN2-2593](https://jira.onap.org/browse/DCAEGEN2-2593) - Vulnerability removal for ves collector +## [1.7.11] - 18/02/2021 + - [DCAEGEN2-2593](https://jira.onap.org/browse/DCAEGEN2-2593) - Vulnerability removal for ves collector + Fix sonar reporting problem @@ -24,7 +24,7 @@ </parent>
<groupId>org.onap.dcaegen2.collectors.ves</groupId>
<artifactId>VESCollector</artifactId>
- <version>1.7.10-SNAPSHOT</version>
+ <version>1.7.11-SNAPSHOT</version>
<name>dcaegen2-collectors-ves</name>
<description>VESCollector</description>
<properties>
@@ -69,13 +69,13 @@ <vavr.version>0.9.2</vavr.version>
<spring-boot-starter-log4j2.version>2.1.5.RELEASE</spring-boot-starter-log4j2.version>
<springfox-swagger2.version>3.0.0</springfox-swagger2.version>
- <junit-jupiter-api.version>5.7.1</junit-jupiter-api.version>
+ <junit.jupiter.version>5.7.1</junit.jupiter.version>
<mockito-junit-jupiter.version>2.23.0</mockito-junit-jupiter.version>
<assertj-core.version>3.8.0</assertj-core.version>
<jimfs.version>1.1</jimfs.version>
<wiremock-standalone.version>2.17.0</wiremock-standalone.version>
<spring-security-test.version>5.1.1.RELEASE</spring-security-test.version>
- <spring-boot-starter-test.version>2.1.0.RELEASE</spring-boot-starter-test.version>
+ <spring-boot-starter-test.version>2.2.13.RELEASE</spring-boot-starter-test.version>
<api-custom-header.version>1.1.4</api-custom-header.version>
<functionaljava.version>4.8.1</functionaljava.version>
<external-schema-manager.version>1.4.3</external-schema-manager.version>
@@ -396,20 +396,8 @@ <!-- TESTING -->
<dependency>
<groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-api</artifactId>
- <version>${junit-jupiter-api.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.junit.jupiter</groupId>
- <artifactId>junit-jupiter-engine</artifactId>
- <version>${junit-jupiter-api.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.junit.vintage</groupId>
- <artifactId>junit-vintage-engine</artifactId>
- <version>${junit-jupiter-api.version}</version>
+ <artifactId>junit-jupiter</artifactId>
+ <version>${junit.jupiter.version}</version>
<scope>test</scope>
</dependency>
<dependency>
diff --git a/version.properties b/version.properties index 96125af9..f4fea6dd 100644 --- a/version.properties +++ b/version.properties @@ -1,6 +1,6 @@ major=1 minor=7 -patch=10 +patch=11 base_version=${major}.${minor}.${patch} release_version=${base_version} snapshot_version=${base_version}-SNAPSHOT |