Skip to content

Commit

Permalink
th2-gradle-plugin:0.1.2
Browse files Browse the repository at this point in the history
version updated
README.md
  • Loading branch information
lumber1000 committed Sep 23, 2024
1 parent 7bde0f8 commit 6a248a8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 19 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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):
Expand Down Expand Up @@ -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

Expand Down
21 changes: 5 additions & 16 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}

Expand All @@ -14,9 +14,7 @@ ext {
group 'com.exactpro.th2'
version release_version

kotlin {
jvmToolchain(11)
}
kotlin.jvmToolchain(11)

repositories {
mavenCentral()
Expand Down Expand Up @@ -87,15 +85,6 @@ tasks.withType(KotlinCompile).configureEach {
}
}

application {
mainClassName = "com.exactpro.th2.rptdataprovider.MainKt"
}


test {
useJUnitPlatform()
}

dependencyCheck {
suppressionFile='supressions.xml'
}
application.mainClass = "com.exactpro.th2.rptdataprovider.MainKt"
test.useJUnitPlatform()
dependencyCheck.suppressionFile = 'suppressions.xml'
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
kotlin.code.style=official
release_version=5.13.2
release_version=5.14.0
docker_image_name=
File renamed without changes.

0 comments on commit 6a248a8

Please sign in to comment.