Upgraded to Gradle 7.0.1
This commit is contained in:
parent
16e567baa4
commit
d7bb06bfcb
4 changed files with 10 additions and 5 deletions
|
@ -1,5 +1,6 @@
|
|||
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
||||
import java.net.URL
|
||||
import org.gradle.api.tasks.testing.logging.TestExceptionFormat
|
||||
|
||||
plugins {
|
||||
jacoco
|
||||
|
@ -90,6 +91,10 @@ val javadocJar by tasks.creating(Jar::class) {
|
|||
|
||||
tasks {
|
||||
withType<Test> {
|
||||
testLogging {
|
||||
exceptionFormat = TestExceptionFormat.FULL
|
||||
}
|
||||
|
||||
useTestNG()
|
||||
}
|
||||
|
||||
|
@ -226,7 +231,7 @@ publishing {
|
|||
scm {
|
||||
connection.set("scm:git:git://github.com/$gitHub.git")
|
||||
developerConnection.set("scm:git:git@github.com:$gitHub.git")
|
||||
url.set("$mavenUrl")
|
||||
url.set(mavenUrl)
|
||||
}
|
||||
issueManagement {
|
||||
system.set("GitHub")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue