Skip to content

Commit

Permalink
feat(deps): update all java deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Oct 18, 2022
1 parent 9d5c09a commit 0e6de92
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 11 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ plugins {
id 'org.gradle.test-retry' version '1.4.1'

// helper
id "com.github.ben-manes.versions" version "0.42.0"
id "com.github.ben-manes.versions" version "0.43.0"

// front
id 'org.siouan.frontend-jdk11' version '6.0.0' apply false
Expand Down Expand Up @@ -71,6 +71,7 @@ allprojects {
force("org.apache.kafka:kafka-clients:" + kafkaVersion)
force("org.apache.kafka:kafka-streams:" + kafkaVersion)
force("org.jooq:jooq:3.16.10")
force("org.slf4j:slf4j-api:1.7.36")
}
}

Expand Down Expand Up @@ -111,7 +112,7 @@ allprojects {

// kestra
implementation group: 'com.devskiller.friendly-id', name: 'friendly-id', version: '1.1.0'
implementation 'com.github.jknack:handlebars:4.3.0'
implementation 'com.github.jknack:handlebars:4.3.1'
implementation group: 'net.thisptr', name: 'jackson-jq', version: '1.0.0-preview.20220705'

// exposed utils
Expand Down
4 changes: 2 additions & 2 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {

// utils
implementation group: 'net.jodah', name: 'failsafe', version: '2.4.4'
implementation 'com.github.oshi:oshi-core:6.2.2'
implementation 'com.github.oshi:oshi-core:6.3.0'
implementation 'io.pebbletemplates:pebble:3.1.6'

// scheduler
Expand All @@ -43,7 +43,7 @@ dependencies {
testImplementation project(':runner-memory')
testImplementation project(':storage-local')

testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.1'
testImplementation "io.micronaut:micronaut-http-client"
testImplementation "io.micronaut.rxjava2:micronaut-rxjava2-http-client"
testImplementation "io.micronaut:micronaut-http-server-netty"
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version=0.5.2-SNAPSHOT
opensearchVersion=2.3.0
micronautVersion=3.7.1
micronautVersion=3.7.2
kafkaVersion=3.1.0
lombokVersion=1.18.24
2 changes: 1 addition & 1 deletion indexer-kafka-elasticsearch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ dependencies {
implementation group: "org.apache.kafka", name: "kafka-clients", version: kafkaVersion
implementation group: 'net.jodah', name: 'failsafe', version: '2.4.4'

testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.1'
}
2 changes: 1 addition & 1 deletion jdbc-h2/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ dependencies {
testImplementation project(':jdbc').sourceSets.test.output
testImplementation project(':runner-memory')
testImplementation project(':storage-local')
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.1'
}
2 changes: 1 addition & 1 deletion jdbc-mysql/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ dependencies {
testImplementation project(':jdbc').sourceSets.test.output
testImplementation project(':runner-memory')
testImplementation project(':storage-local')
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.1'
}
2 changes: 1 addition & 1 deletion jdbc-postgres/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ dependencies {
testImplementation project(':jdbc').sourceSets.test.output
testImplementation project(':runner-memory')
testImplementation project(':storage-local')
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.1'
}
2 changes: 1 addition & 1 deletion repository-elasticsearch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ dependencies {
testImplementation project(':core').sourceSets.test.output
testImplementation project(':runner-memory')
testImplementation project(':storage-local')
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.1'
}
2 changes: 1 addition & 1 deletion runner-kafka/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ dependencies {

testImplementation group: 'org.apache.kafka', name: 'kafka-streams-test-utils', version: kafkaVersion

testImplementation 'org.mockito:mockito-junit-jupiter:4.8.0'
testImplementation 'org.mockito:mockito-junit-jupiter:4.8.1'
}

0 comments on commit 0e6de92

Please sign in to comment.