Skip to content

Commit

Permalink
version updated
Browse files Browse the repository at this point in the history
dependencies updated
  • Loading branch information
lumber1000 committed Oct 23, 2024
1 parent 2e32733 commit a605b2b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 14 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,7 @@ spec:

## 5.15.0
* Migrate to native grouped message request
* Updated cradle: `5.4.3-dev`

## 5.14.0
* Reduced required memory for executing sse event request with `limitForParent` parameter
Expand Down
20 changes: 7 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {

ext {
dockerImageVersion = release_version
cradleVersion = '5.4.2-dev'
cradleVersion = '5.4.3-dev'
}

group 'com.exactpro.th2'
Expand All @@ -35,48 +35,42 @@ configurations.configureEach {

dependencies {
implementation 'org.slf4j:slf4j-api'

implementation 'com.fasterxml.jackson.core:jackson-core'
implementation 'com.fasterxml.jackson.module:jackson-module-kotlin'
implementation 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310'

implementation 'org.apache.commons:commons-lang3'

implementation('com.exactpro.th2:common:5.14.0-dev') {
exclude group: 'com.exactpro.th2', module: 'cradle-core'
exclude group: 'com.exactpro.th2', module: 'cradle-cassandra'
}
implementation 'com.exactpro.th2:common-utils:2.3.0-dev'

implementation 'com.exactpro.th2:common-utils:2.3.0-dev'
implementation "com.exactpro.th2:cradle-core:${cradleVersion}"

implementation "com.exactpro.th2:cradle-cassandra:${cradleVersion}"

implementation 'com.exactpro.th2:grpc-data-provider:0.2.0-dev'

implementation 'io.github.oshai:kotlin-logging:5.1.4'

implementation 'io.prometheus:simpleclient'

implementation(platform('io.ktor:ktor-bom:2.3.12'))
implementation 'io.ktor:ktor-server-netty'
implementation 'io.ktor:ktor-server'

implementation 'org.ehcache:ehcache:3.10.8'
implementation('org.glassfish.jaxb:jaxb-runtime:2.3.9') {
because("'2.3.9' version has 'EDL 1.0' license instead of 'CDDL GPL 1.1' in the '2.3.1'")
}

testImplementation('io.mockk:mockk:1.13.12') { // The last version bases on kotlin 1.6.0
testImplementation('io.mockk:mockk:1.13.13') { // The last version bases on kotlin 1.6.0
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-reflect' // because we need kotlin reflect with different version
}

testImplementation('org.jetbrains.kotlin:kotlin-reflect') {
because('mockk needs it')
}
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.0'
testImplementation "org.junit.jupiter:junit-jupiter-params:5.11.0"

testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.0'
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.11.3'
testImplementation "org.junit.jupiter:junit-jupiter-params:5.11.3"
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.11.3'
}

tasks.withType(KotlinCompile).configureEach {
Expand Down
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.14.0
release_version=5.15.0
docker_image_name=

0 comments on commit a605b2b

Please sign in to comment.