Skip to content

Commit

Permalink
chore(deps): update all java deps
Browse files Browse the repository at this point in the history
  • Loading branch information
tchiotludo committed Mar 31, 2022
1 parent 04219ee commit 1bd6b0e
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 20 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

# Caches
- name: Gradle cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
Expand All @@ -51,15 +51,15 @@ jobs:
${{ runner.os }}-gradle-
- name: Npm cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Node cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node
key: ${{ runner.os }}-node-${{ hashFiles('ui/*.gradle') }}
Expand Down Expand Up @@ -200,7 +200,7 @@ jobs:

# Caches
- name: Gradle cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
Expand All @@ -210,15 +210,15 @@ jobs:
${{ runner.os }}-gradle-
- name: Npm cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Node cache
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: node
key: ${{ runner.os }}-node-${{ hashFiles('ui/*.gradle') }}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ allprojects {

// logs
implementation "org.slf4j:slf4j-api:1.7.36"
implementation "ch.qos.logback:logback-classic:1.2.10"
implementation "ch.qos.logback:logback-classic:1.2.11"
implementation group: 'org.apache.logging.log4j', name: 'log4j-to-slf4j', version: '2.17.2'
implementation group: 'org.slf4j', name: 'jul-to-slf4j', version: '1.7.36'

Expand Down
14 changes: 7 additions & 7 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ processResources.dependsOn copyGradleProperties

dependencies {
// log
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.10'
implementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.2.11'

// serializers
implementation group: 'com.fasterxml.jackson.dataformat', name: 'jackson-dataformat-ion'

// utils
implementation group: 'net.jodah', name: 'failsafe', version: '2.4.4'
implementation 'com.github.oshi:oshi-core:6.1.4'
implementation 'com.github.oshi:oshi-core:6.1.5'
implementation 'io.pebbletemplates:pebble:3.1.5'

// scheduler
Expand All @@ -33,17 +33,17 @@ dependencies {
implementation 'com.github.docker-java:docker-java-transport-httpclient5:3.2.13'

// schema
implementation group: 'com.github.victools', name: 'jsonschema-generator', version: '4.22.0'
implementation group: 'com.github.victools', name: 'jsonschema-module-javax-validation', version: '4.22.0'
implementation group: 'com.github.victools', name: 'jsonschema-module-jackson', version: '4.22.0'
implementation group: 'com.github.victools', name: 'jsonschema-module-swagger-2', version: '4.22.0'
implementation group: 'com.github.victools', name: 'jsonschema-generator', version: '4.23.0'
implementation group: 'com.github.victools', name: 'jsonschema-module-javax-validation', version: '4.23.0'
implementation group: 'com.github.victools', name: 'jsonschema-module-jackson', version: '4.23.0'
implementation group: 'com.github.victools', name: 'jsonschema-module-swagger-2', version: '4.23.0'

// test
testImplementation project(':repository-memory')
testImplementation project(':runner-memory')
testImplementation project(':storage-local')

testImplementation 'org.mockito:mockito-junit-jupiter:4.3.1'
testImplementation 'org.mockito:mockito-junit-jupiter:4.4.0'
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 docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ services:
path: /tmp/kestra-wd/tmp
url: http://localhost:8080/
ports:
- "8080:8080"
- "28080:8080"
depends_on:
- kafka
- zookeeper
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version=0.4.3-SNAPSHOT
opensearchVersion=1.2.4
micronautVersion=3.3.4
opensearchVersion=1.3.1
micronautVersion=3.4.1
kafkaVersion=3.1.0
lombokVersion=1.18.22
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.3.1'
testImplementation 'org.mockito:mockito-junit-jupiter:4.4.0'
}
2 changes: 1 addition & 1 deletion repository-elasticsearch/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ dependencies {

testImplementation project(':core').sourceSets.test.output
testImplementation project(':runner-memory')
testImplementation 'org.mockito:mockito-junit-jupiter:4.3.1'
testImplementation 'org.mockito:mockito-junit-jupiter:4.4.0'
}
2 changes: 1 addition & 1 deletion runner-kafka/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ dependencies {

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

testImplementation 'org.mockito:mockito-junit-jupiter:4.3.1'
testImplementation 'org.mockito:mockito-junit-jupiter:4.4.0'
}

0 comments on commit 1bd6b0e

Please sign in to comment.