Skip to content

Commit

Permalink
Update dependencies (#105)
Browse files Browse the repository at this point in the history
* th2 gradle plugin: `0.1.6` based on bom: `4.9.0`
* cradle api: `5.4.4-dev`
* common: `5.14.0-dev`
* common-utils: `2.3.0-dev`
  • Loading branch information
Nikita-Smirnov-Exactpro authored Dec 9, 2024
1 parent 5488619 commit 8579cc6
Show file tree
Hide file tree
Showing 7 changed files with 234 additions and 146 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-jdk11 AS build
FROM gradle:8.11.1-jdk11 AS build
ARG release_version
ARG vcs_url
COPY ./ .
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Overview (5.7.0)
# Overview (5.8.0)

Event store (estore) is an important th2 component responsible for storing events into Cradle. Please refer to [Cradle repository] (https://github.com/th2-net/cradleapi/blob/master/README.md) for more details. This component has a pin for listening events via MQ.

Expand Down Expand Up @@ -101,6 +101,14 @@ More details [here](doc/perftest-5.7.0-dev/perftest.md).

# Changes

## 5.8.0

* Updated
* th2 gradle plugin: `0.1.6` based on bom: `4.9.0`
* cradle api: `5.4.4-dev`
* common: `5.14.0-dev`
* common-utils: `2.3.0-dev`

## 5.7.0

* Using separate executor instead of ForkJoinPool.commonPool() when storing events
Expand Down
12 changes: 6 additions & 6 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
id "application"
id "com.exactpro.th2.gradle.component" version "0.0.8"
id "com.exactpro.th2.gradle.component" version "0.1.6"
}

group = 'com.exactpro.th2'
Expand All @@ -10,7 +10,7 @@ sourceCompatibility = 11
targetCompatibility = 11

ext {
cradleVersion = '5.4.1-dev'
cradleVersion = '5.4.4-dev'
}

repositories {
Expand All @@ -36,11 +36,11 @@ javadoc {
}

dependencies {
implementation('com.exactpro.th2:common:5.12.0-dev') {
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.2.3-dev") {
implementation("com.exactpro.th2:common-utils:2.3.0-dev") {
because("executor service utils is used")
}
implementation 'com.exactpro.th2:task-utils:0.1.2'
Expand All @@ -60,8 +60,8 @@ dependencies {
}

testImplementation 'org.apache.commons:commons-lang3'
testImplementation 'org.junit.jupiter:junit-jupiter:5.10.2'
testImplementation 'org.mockito:mockito-junit-jupiter:5.11.0'
testImplementation 'org.junit.jupiter:junit-jupiter:5.11.3'
testImplementation 'org.mockito:mockito-junit-jupiter:5.14.2'
}

application {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
release_version=5.7.0
release_version=5.8.0
description='th2 estore component'
vcs_url=https://github.com/th2-net/th2-estore

6 changes: 3 additions & 3 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Mar 24 16:22:29 MSK 2020
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 8579cc6

Please sign in to comment.