Updated to Gradle 7.0.1

This commit is contained in:
Erik C. Thauvin 2021-05-10 13:03:24 -07:00
parent 1e5f058ed4
commit 4caeababe8
3 changed files with 11 additions and 2 deletions

View file

@ -1,5 +1,6 @@
import org.jetbrains.dokka.gradle.DokkaTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
plugins {
id("com.github.ben-manes.versions") version "0.38.0"
@ -10,6 +11,7 @@ plugins {
application
`maven-publish`
jacoco
java
signing
}
@ -50,6 +52,7 @@ java {
withSourcesJar()
}
detekt {
toolVersion = "main-SNAPSHOT"
}
@ -72,6 +75,12 @@ tasks {
kotlinOptions.jvmTarget = "11"
}
withType<Test> {
testLogging {
exceptionFormat = TestExceptionFormat.FULL
}
}
withType<GenerateMavenPom> {
destination = file("$projectDir/pom.xml")
}