Skip to content

Commit

Permalink
implementation "org.apache.commons:commons-lang3"
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleg Smelov committed Apr 10, 2024
1 parent 65e2032 commit affafe0
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 15 deletions.
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# th2-conn-dirty-fix (1.5.1)
# th2-conn-dirty-fix (1.6.0)

This microservice allows sending and receiving messages via FIX protocol

Expand Down Expand Up @@ -335,6 +335,14 @@ spec:

# Changelog

## 1.6.0

* Channel subscriptions recovery on failure
* Updated bom: `4.6.1-dev`
* Updated common: `5.10.0-dev`
* Updated common-utils: `2.2.3-dev`
* Updated conn-dirty-tcp-core: `3.5.0-dev`

## 1.5.1

* Property `th2.operation_timestamp` is added to metadata to each message
Expand Down
26 changes: 13 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import com.github.jk1.license.render.JsonReportRenderer
plugins {
id 'java'
id 'org.jetbrains.kotlin.jvm' version '1.8.22'
id 'com.palantir.docker' version '0.25.0'
id "org.owasp.dependencycheck" version "8.3.1"
id 'com.palantir.docker' version '0.36.0'
id "org.owasp.dependencycheck" version "9.0.9"
id "com.gorylenko.gradle-git-properties" version "2.4.1"
id 'com.github.jk1.dependency-license-report' version '2.5'
id "de.undercouch.download" version "5.4.0"
id "de.undercouch.download" version "5.6.0"
}

apply plugin: 'application'
Expand Down Expand Up @@ -45,32 +45,32 @@ repositories {
}

dependencies {
api platform('com.exactpro.th2:bom:4.5.0')
api platform('com.exactpro.th2:bom:4.6.1')

implementation("com.exactpro.th2:common:5.4.0-dev") {
implementation("com.exactpro.th2:common:5.10.0-dev") {
exclude group: 'com.exactpro.th2', module: 'task-utils'
}
implementation "com.exactpro.th2:common-utils:2.2.0-dev"
implementation "com.exactpro.th2:common-utils:2.2.3-dev"
implementation 'com.exactpro.th2:netty-bytebuf-utils:0.0.1'
implementation 'com.exactpro.th2:conn-dirty-tcp-core:3.3.0-dev'
implementation 'com.exactpro.th2:grpc-lw-data-provider:2.2.0-dev'
implementation 'com.exactpro.th2:conn-dirty-tcp-core:3.5.0-dv3-channel-recovery-8632066697-0fff487-SNAPSHOT' //TODO: dev release
implementation 'com.exactpro.th2:grpc-lw-data-provider:2.3.1-TH2-2212-recover-subscriptions-d96f3d8-SNAPSHOT' //TODO: dev release

implementation 'org.slf4j:slf4j-api'
implementation 'io.github.microutils:kotlin-logging:3.0.0' // The last version bases on kotlin 1.6.0
implementation 'io.github.microutils:kotlin-logging:3.0.5'
implementation 'org.apache.commons:commons-lang3'

implementation 'io.netty:netty-all'
implementation 'com.google.auto.service:auto-service:1.0.1'
implementation 'com.google.auto.service:auto-service:1.1.1'

implementation 'com.fasterxml.jackson.core:jackson-core'
implementation 'com.fasterxml.jackson.core:jackson-databind'
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin'

testImplementation 'org.mockito:mockito-all:1.10.19'
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit5:1.7.10'
testImplementation 'org.jetbrains.kotlin:kotlin-test-junit5:1.8.22'

annotationProcessor 'com.google.auto.service:auto-service:1.0.1'
kapt 'com.google.auto.service:auto-service:1.0.1'
annotationProcessor 'com.google.auto.service:auto-service:1.1.1'
kapt 'com.google.auto.service:auto-service:1.1.1'
}

test {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
release_version=1.5.1
release_version=1.6.0

0 comments on commit affafe0

Please sign in to comment.