diff options
author | tkogut <tomasz.kogut@nokia.com> | 2021-02-23 12:07:16 +0100 |
---|---|---|
committer | tkogut <tomasz.kogut@nokia.com> | 2021-02-23 12:07:16 +0100 |
commit | 9ce8d80332f79d22d2e15b41a4d60efd88dd5a7e (patch) | |
tree | 66f9a3a6b3b549cdf386ffaf605cb705cc8724bf | |
parent | 28773aea4358f79aded267780a346b770275b80d (diff) |
Fix the sonar report issue
Issue-ID: DCAEGEN2-2641
Signed-off-by: tkogut <tomasz.kogut@nokia.com>
Change-Id: Ifcf6197754e8a6653486ba3b89e6c934ccafa826
-rw-r--r-- | Changelog.md | 4 | ||||
-rw-r--r-- | pom.xml | 26 | ||||
-rw-r--r-- | version.properties | 2 |
3 files changed, 15 insertions, 17 deletions
diff --git a/Changelog.md b/Changelog.md index 795fcd6..ce33bf0 100644 --- a/Changelog.md +++ b/Changelog.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [1.2.4] - 19/02/2021 +### Fixed +- [DCAEGEN2-2641](https://jira.onap.org/browse/DCAEGEN2-2641) - Fix the RESTConf sonar report issue + ## [1.2.3] - 08/02/2021 ### Changed - [DCAEGEN2-2592](https://jira.onap.org/browse/DCAEGEN2-2592) - Honolulu Vulnerability updates @@ -27,7 +27,7 @@ limitations under the License. </parent> <groupId>org.onap.dcaegen2.collectors.restconf</groupId> <artifactId>restconfcollector</artifactId> - <version>1.2.3-SNAPSHOT</version> + <version>1.2.4-SNAPSHOT</version> <name>dcaegen2-collectors-restconf</name> <description>RestConfCollector</description> <properties> @@ -94,7 +94,7 @@ limitations under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> - <version>3.0.0-M1</version> + <version>3.0.0-M5</version> </plugin> <plugin> <groupId>com.spotify</groupId> @@ -342,6 +342,12 @@ limitations under the License. <groupId>com.googlecode.json-simple</groupId> <artifactId>json-simple</artifactId> <version>1.1.1</version> + <exclusions> + <exclusion> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>com.github.fge</groupId> @@ -507,19 +513,7 @@ limitations under the License. <!-- TESTING --> <dependency> <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-api</artifactId> - <version>5.7.0</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-engine</artifactId> - <version>5.7.0</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.junit.vintage</groupId> - <artifactId>junit-vintage-engine</artifactId> + <artifactId>junit-jupiter</artifactId> <version>5.7.0</version> <scope>test</scope> </dependency> @@ -556,7 +550,7 @@ limitations under the License. <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> - <version>2.1.0.RELEASE</version> + <version>2.2.13.RELEASE</version> <scope>test</scope> </dependency> <dependency> diff --git a/version.properties b/version.properties index 2b93152..1b6b05f 100644 --- a/version.properties +++ b/version.properties @@ -1,6 +1,6 @@ major=1 minor=2 -patch=3 +patch=4 base_version=${major}.${minor}.${patch} release_version=${base_version} snapshot_version=${base_version}-SNAPSHOT |