Skip to content

Commit

Permalink
build: disable PMD until pmd/pmd#5096 is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
DanySK committed Dec 6, 2024
1 parent 891f398 commit 839c5f1
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -117,6 +117,10 @@ allprojects {
""".trimIndent(),
)
}
// TODO: enable PMD when this bug is fixed: https://github.com/pmd/pmd/issues/5096
tasks.withType<Pmd>().configureEach {
enabled = false
}
}

tasks.withType<AbstractDokkaLeafTask>().configureEach {
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -149,14 +149,14 @@ gitSemVer = "org.danilopianini.git-sensitive-semantic-versioning-gradle-plugin:3
graphql-client = { id = "com.apollographql.apollo3", version.ref = "apollo" }
graphql-server = { id = "com.expediagroup.graphql", version.ref = "graphql" }
hugo = "io.github.fstaudt.hugo:0.9.0"
java-qa = "org.danilopianini.gradle-java-qa:1.57.1"
java-qa = "org.danilopianini.gradle-java-qa:1.77.0"
kotest-multiplatform = { id = "io.kotest.multiplatform", version.ref = "kotest" }
kotlin-multiplatform = { id = "org.jetbrains.kotlin.multiplatform", version.ref = "kotlin" }
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
kotlin-serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
kotlin-qa = "org.danilopianini.gradle-kotlin-qa:0.77.1"
ktor = { id = "io.ktor.plugin", version.ref = "ktor" }
multiJvmTesting = "org.danilopianini.multi-jvm-test-plugin:2.0.0"
multiJvmTesting = "org.danilopianini.multi-jvm-test-plugin:3.0.0"
publishOnCentral = "org.danilopianini.publish-on-central:6.0.0"
scalafmt = "cz.alenkacz.gradle.scalafmt:1.16.2"
scalatest = "com.github.maiflai.scalatest:0.32"

0 comments on commit 839c5f1

Please sign in to comment.