Skip to content

Commit

Permalink
updated version and dependencies
Browse files Browse the repository at this point in the history
README.md
  • Loading branch information
Oleg Smelov committed May 27, 2024
1 parent 63b0cff commit 8d1f455
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM gradle:7.6-jdk8 AS build
FROM gradle:7.6-jdk11 AS build
ARG release_version
ARG bintray_user
ARG bintray_key
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,6 +209,9 @@ Test events have mandatory parameters that are verified when storing an event. T

## Release notes

### 5.3.0
* Using separate executor instead of ForkJoinPool.commonPool()

### 5.2.0
* Added page cache for each book to avoid memory leak

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
id "org.owasp.dependencycheck" version "9.0.9"
id "org.owasp.dependencycheck" version "9.0.10"
id 'signing'
}

Expand Down
10 changes: 5 additions & 5 deletions cradle-cassandra/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ dependencies {
implementation 'com.google.guava:guava'

// this section is required to bypass failing vulnerability check caused by cassandra driver's transitive dependencies
annotationProcessor platform('com.exactpro.th2:bom:4.5.0')
annotationProcessor platform('com.exactpro.th2:bom:4.6.1')
annotationProcessor "com.datastax.oss:java-driver-mapper-processor"
// ---

testImplementation 'org.testng:testng:7.9.0'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.testng:testng:7.10.2'
testImplementation 'org.assertj:assertj-core:3.26.0'
testImplementation "org.apache.logging.log4j:log4j-slf4j2-impl"
testImplementation 'org.apache.logging.log4j:log4j-core'
testImplementation 'org.mockito:mockito-core:5.10.0'
testImplementation 'org.testcontainers:cassandra:1.19.6'
testImplementation 'org.mockito:mockito-core:5.12.0'
testImplementation 'org.testcontainers:cassandra:1.19.8'
}

def gen_dir = 'build/generated/sources/annotationProcessor/main'
Expand Down
6 changes: 3 additions & 3 deletions cradle-core/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
dependencies {
api platform('com.exactpro.th2:bom:4.5.0')
api platform('com.exactpro.th2:bom:4.6.1')

implementation "com.fasterxml.jackson.core:jackson-databind"
implementation "org.apache.commons:commons-lang3"
Expand All @@ -12,8 +12,8 @@ dependencies {

testImplementation 'org.apache.logging.log4j:log4j-slf4j2-impl'
testImplementation 'org.apache.logging.log4j:log4j-core'
testImplementation 'org.testng:testng:7.9.0'
testImplementation 'org.assertj:assertj-core:3.25.3'
testImplementation 'org.testng:testng:7.10.2'
testImplementation 'org.assertj:assertj-core:3.26.0'
}

test {
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=5.2.0
release_version=5.3.0
description='Cradle API'
vcs_url=https://github.com/th2-net/cradleapi

0 comments on commit 8d1f455

Please sign in to comment.