Skip to content

Commit

Permalink
[TH2-1836] Updated th2 gradle plugin to 0.0.8 (#6)
Browse files Browse the repository at this point in the history
* Updated common: `5.12.0-dev`
  • Loading branch information
Nikita-Smirnov-Exactpro authored May 30, 2024
1 parent 71397d2 commit 7b69ddb
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# th2-codec-oracle-log-miner (0.2.0)
# th2-codec-oracle-log-miner (0.2.1)

## Description

Expand Down Expand Up @@ -143,6 +143,10 @@ spec:

## Release notes

### 0.2.1
+ Migrated to th2 gradle plugin: `0.0.8`
+ Updated common: `5.12.0-dev`

### 0.2.0
+ Migrated to th2 gradle plugin: `0.0.6`
+ Updated:
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ plugins {
id("java-library")
id("maven-publish")

id "com.exactpro.th2.gradle.publish" version "0.0.6"
id "com.exactpro.th2.gradle.component" version "0.0.6"
id "com.exactpro.th2.gradle.publish" version "0.0.8"
id "com.exactpro.th2.gradle.component" version "0.0.8"

id "antlr"
id "me.champeau.jmh" version "0.7.2"
Expand Down Expand Up @@ -39,7 +39,7 @@ repositories {
}

dependencies {
implementation "com.exactpro.th2:common:5.10.1-dev"
implementation "com.exactpro.th2:common:5.12.0-dev"
implementation "com.exactpro.th2:common-utils:2.2.3-dev"
implementation "com.exactpro.th2:codec:5.5.0-dev"

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
release_version=0.2.0
release_version=0.2.1
description='th2 codec oracle log miner'
vcs_url=https://github.com/th2-net/th2-codec-oracle-log-miner
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class LogMinerTransformerTest {
.build()
val source: List<ParsedMessage> = listOf(
ParsedMessage.builder()
.setId(baseId.copy(subsequence = listOf(1)))
.setId(baseId.toBuilder().setSubsequence(listOf(1)).build())
.setBody(
mapOf(
"OPERATION" to INSERT.name,
Expand All @@ -191,7 +191,7 @@ class LogMinerTransformerTest {
.setProtocol("")
.build(),
ParsedMessage.builder()
.setId(baseId.copy(subsequence = listOf(2)))
.setId(baseId.toBuilder().setSubsequence(listOf(2)).build())
.setBody(
mapOf(
"OPERATION" to UPDATE.name,
Expand All @@ -205,7 +205,7 @@ class LogMinerTransformerTest {
.setProtocol("")
.build(),
ParsedMessage.builder()
.setId(baseId.copy(subsequence = listOf(3)))
.setId(baseId.toBuilder().setSubsequence(listOf(3)).build())
.setBody(
mapOf(
"OPERATION" to "broken operation",
Expand Down

0 comments on commit 7b69ddb

Please sign in to comment.