Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
h908714124 committed Oct 20, 2024
1 parent 6ae5de5 commit 1766fa8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 22
cache: 'gradle'
- run: ./gradlew compiler:test examples:test
6 changes: 3 additions & 3 deletions compiler/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id('java')
id('maven-publish')
id('com.gradleup.shadow') version('8.3.0')
id('com.gradleup.shadow') version('8.3.3')
id('signing')
}

Expand Down Expand Up @@ -53,8 +53,8 @@ dependencies {
annotationProcessor('io.github.jbock-java:simple-component-compiler:1.024')
testRuntimeOnly('org.junit.platform:junit-platform-launcher')
testImplementation('io.github.jbock-java:compile-testing:0.19.12')
testImplementation('org.junit.jupiter:junit-jupiter:5.10.2')
testImplementation('org.mockito:mockito-core:5.11.0')
testImplementation('org.junit.jupiter:junit-jupiter:5.11.2')
testImplementation('org.mockito:mockito-core:5.14.2')
testImplementation(jbock)
testImplementation(simple_component)
}
Expand Down
4 changes: 2 additions & 2 deletions jbock/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ tasks.withType(GenerateModuleMetadata) {

dependencies {
api('io.github.jbock-java:either:1.5.2')
testImplementation('org.mockito:mockito-core:5.11.0')
testImplementation('org.junit.jupiter:junit-jupiter:5.10.2')
testImplementation('org.mockito:mockito-core:5.14.2')
testImplementation('org.junit.jupiter:junit-jupiter:5.11.2')
}

jar {
Expand Down

0 comments on commit 1766fa8

Please sign in to comment.