Skip to content

Commit 973c919

Browse files
committed
feat(deps): update all java deps
1 parent ec44ee0 commit 973c919

4 files changed

Lines changed: 11 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
fields: repo,message,commit,author,action,eventName,ref,workflow,job,took
107107
username: GitHub Actions
108108
icon_emoji: ':github-actions:'
109-
channel: '#git'
109+
channel: 'C02DQ1A7JLR'
110110
env:
111111
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
112112
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77
id 'ru.vyarus.github-info' version '1.4.0'
88
id 'signing'
99
id "io.github.gradle-nexus.publish-plugin" version "1.1.0"
10-
id "com.github.ben-manes.versions" version "0.42.0"
10+
id "com.github.ben-manes.versions" version "0.43.0"
1111
id 'net.researchgate.release' version '3.0.2'
1212
}
1313

@@ -29,6 +29,12 @@ tasks.withType(JavaCompile) {
2929
options.compilerArgs.add("-parameters")
3030
}
3131

32+
configurations.all {
33+
resolutionStrategy {
34+
force("org.slf4j:slf4j-api:1.7.36")
35+
}
36+
}
37+
3238
dependencies {
3339
// lombok
3440
annotationProcessor "org.projectlombok:lombok:$lombokVersion"

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
version=0.5.1-SNAPSHOT
22
kestraVersion=0.5.+
3-
micronautVersion=3.7.1
3+
micronautVersion=3.7.2
44
lombokVersion=1.18.24

src/test/java/io/kestra/plugin/dbt/cloud/TriggerRunTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
import io.micronaut.context.annotation.Value;
88
import io.micronaut.test.extensions.junit5.annotation.MicronautTest;
99
import jakarta.inject.Inject;
10+
import org.junit.jupiter.api.Disabled;
1011
import org.junit.jupiter.api.Test;
1112

1213
import java.util.Map;
@@ -30,6 +31,7 @@ class TriggerRunTest {
3031
private String jobId;
3132

3233
@Test
34+
@Disabled("Trial account can't trigger run through api")
3335
void run() throws Exception {
3436
TriggerRun task = TriggerRun.builder()
3537
.id(IdUtils.create())

0 commit comments

Comments
 (0)