Skip to content

Commit

Permalink
Bump Gradle scripts to current state on main
Browse files Browse the repository at this point in the history
```
git checkout 240b8d9 -- build.gradle settings.gradle.kts buildSrc/ */build.gradle.kts
```
  • Loading branch information
emlun committed Sep 3, 2024
1 parent ef12050 commit 3920803
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 18 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repositories {
}

dependencies {
implementation("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.9.11")
implementation("info.solidsoft.gradle.pitest:gradle-pitest-plugin:1.15.0")
implementation("io.franzbecker:gradle-lombok:5.0.0")

// Spotless dropped Java 8 support in version 2.33.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ spotless {

scalafix {
configFile.set(project.rootProject.file("scalafix.conf"))

if (project.name != "yubico-util-scala") {
// yubico-util-scala is the only subproject with Scala sources in the "main" source set
ignoreSourceSets.add("main")
}
}

project.dependencies.scalafix("com.github.liancheng:organize-imports_2.13:0.6.0")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ plugins {
}

pitest {
pitestVersion.set("1.9.5")
pitestVersion.set("1.15.0")
timestampedReports.set(false)

outputFormats.set(listOf("XML", "HTML"))
Expand Down
4 changes: 0 additions & 4 deletions webauthn-server-attestation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,3 @@ tasks.javadoc.configure {
// Use this instead for local testing
//(options as StandardJavadocDocletOptions).linksOffline("file://${coreJavadoc.destinationDir}", "${coreJavadoc.destinationDir}")
}

scalafix {
ignoreSourceSets.add("main")
}
4 changes: 0 additions & 4 deletions webauthn-server-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,3 @@ tasks.withType(Jar::class) {
))
}
}

scalafix {
ignoreSourceSets.add("main")
}
4 changes: 0 additions & 4 deletions webauthn-server-demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,3 @@ for (task in listOf(tasks.installDist, tasks.distZip, tasks.distTar)) {
}
}
}

scalafix {
ignoreSourceSets.add("main")
}
4 changes: 0 additions & 4 deletions yubico-util/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,3 @@ tasks.jar {
))
}
}

scalafix {
ignoreSourceSets.add("main")
}

0 comments on commit 3920803

Please sign in to comment.