Skip to content

Commit

Permalink
Upgrade build tools
Browse files Browse the repository at this point in the history
  • Loading branch information
jzbrooks committed Dec 12, 2021
1 parent b8f6a50 commit 0e4f328
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ jobs:
id: setup-jdk
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
distribution: zulu
- name: build
run: ./gradlew build
- name: archive vgo test results
Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ buildscript {
}

dependencies {
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0")
classpath("org.jlleitschuh.gradle:ktlint-gradle:10.2.0")
classpath("com.vanniktech:gradle-maven-publish-plugin:0.18.0")
}
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.1-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
4 changes: 2 additions & 2 deletions vgo-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ plugins {
}

dependencies {
testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.24")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.2")
testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.25")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
Expand Down
4 changes: 2 additions & 2 deletions vgo-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ plugins {
dependencies {
implementation(project(":vgo"))

testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.24")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.2")
testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.25")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
Expand Down
4 changes: 2 additions & 2 deletions vgo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ sourceSets {
dependencies {
implementation(project(":vgo-core"))

testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.24")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.7.2")
testImplementation("com.willowtreeapps.assertk:assertk-jvm:0.25")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
testImplementation("org.junit.jupiter:junit-jupiter-params")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine")
}
Expand Down

0 comments on commit 0e4f328

Please sign in to comment.