Skip to content

Commit

Permalink
chore: update gradle and dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
skylot committed Apr 17, 2022
1 parent d53d83a commit ea0b8ce
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 15 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,5 @@ node_modules/
*.orig

**/.DS_Store

cliff.toml
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask

plugins {
id("com.github.ben-manes.versions") version "0.39.0"
id("com.diffplug.spotless") version "5.16.0"
id("com.github.ben-manes.versions") version "0.42.0"
id("com.diffplug.spotless") version "6.4.2"
}

fun isNonStable(version: String): Boolean {
Expand Down
8 changes: 4 additions & 4 deletions buildSrc/src/main/kotlin/raung.java-common.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ repositories {

dependencies {

testImplementation("ch.qos.logback:logback-classic:1.2.6")
testImplementation("org.assertj:assertj-core:3.21.0")
testImplementation("ch.qos.logback:logback-classic:1.2.11")
testImplementation("org.assertj:assertj-core:3.22.0")

testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.1")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.1")
testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.2")
}

tasks.test {
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/raung.java-library.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
}

dependencies {
api("org.slf4j:slf4j-api:1.7.32")
api("org.slf4j:slf4j-api:1.7.36")
}

group = "io.github.skylot"
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
distributionSha256Sum=f581709a9c35e9cb92e16f585d2c4bc99b2b1a5f85d2badbd3dc6bff59e1e6dd
distributionSha256Sum=e6d864e3b5bc05cc62041842b306383fc1fefcec359e70cebb1d470a6094ca82
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
2 changes: 1 addition & 1 deletion raung-asm/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ plugins {
dependencies {
api(project(":raung-common"))

api("org.ow2.asm:asm-util:9.2")
api("org.ow2.asm:asm-util:9.3")
}
4 changes: 2 additions & 2 deletions raung-cli/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ dependencies {
implementation(project(":raung-asm"))
implementation(project(":raung-disasm"))

implementation("info.picocli:picocli:4.6.1")
implementation("ch.qos.logback:logback-classic:1.2.6")
implementation("info.picocli:picocli:4.6.3")
implementation("ch.qos.logback:logback-classic:1.2.11")
}

application {
Expand Down
4 changes: 2 additions & 2 deletions raung-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

dependencies {
api("org.ow2.asm:asm:9.2")
api("org.ow2.asm:asm:9.3")

compileOnlyApi("org.jetbrains:annotations:22.0.0")
compileOnlyApi("org.jetbrains:annotations:23.0.0")
}
2 changes: 1 addition & 1 deletion raung-tests/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ dependencies {
testImplementation(project(":raung-asm"))
testImplementation(project(":raung-disasm"))

testCompileOnly("org.jetbrains:annotations:22.0.0")
testCompileOnly("org.jetbrains:annotations:23.0.0")
}

0 comments on commit ea0b8ce

Please sign in to comment.