diff --git a/README.md b/README.md index 28a76d83..792f79ea 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Report data provider (5.13.2) +# Report data provider (5.14.0) # Overview This component serves as a backend for rpt-viewer. It will connect to the cassandra database via cradle api and expose the data stored in there as REST resources. @@ -182,7 +182,6 @@ data: 'Event metadata object' / 'message' | 'Empty data' | 'HTTP Error code' | ' id: event / message id | null | null | null ``` - # Configuration schema component description example (rpt-data-provider.yml): @@ -297,6 +296,11 @@ spec: # Release notes +## 5.14.0 +* Migrate to native grouped message request +* Updated: + * th2 gradle plugin: `0.1.2` + ## 5.13.2 * Reduced required memory for executing sse event request with `limitForParent` parameter diff --git a/build.gradle b/build.gradle index 049865c2..33ad1c2b 100644 --- a/build.gradle +++ b/build.gradle @@ -2,7 +2,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile plugins { id 'org.jetbrains.kotlin.jvm' version '1.8.22' - id "com.exactpro.th2.gradle.component" version "0.1.1" + id "com.exactpro.th2.gradle.component" version "0.1.2" id 'application' } @@ -14,9 +14,7 @@ ext { group 'com.exactpro.th2' version release_version -kotlin { - jvmToolchain(11) -} +kotlin.jvmToolchain(11) repositories { mavenCentral() @@ -87,15 +85,6 @@ tasks.withType(KotlinCompile).configureEach { } } -application { - mainClassName = "com.exactpro.th2.rptdataprovider.MainKt" -} - - -test { - useJUnitPlatform() -} - -dependencyCheck { - suppressionFile='supressions.xml' -} \ No newline at end of file +application.mainClass = "com.exactpro.th2.rptdataprovider.MainKt" +test.useJUnitPlatform() +dependencyCheck.suppressionFile = 'suppressions.xml' \ No newline at end of file diff --git a/gradle.properties b/gradle.properties index cff52657..99f0791e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,3 +1,3 @@ kotlin.code.style=official -release_version=5.13.2 +release_version=5.14.0 docker_image_name= \ No newline at end of file diff --git a/supressions.xml b/suppressions.xml similarity index 100% rename from supressions.xml rename to suppressions.xml