Upgrade to JDK 16, Kotlin 1.3.21 and Gradle 7.1.1
This commit is contained in:
parent
05195d792d
commit
3d4824759e
64 changed files with 1073 additions and 620 deletions
|
@ -5,17 +5,17 @@ import java.net.URL
|
|||
|
||||
plugins {
|
||||
id("com.github.ben-manes.versions") version "0.39.0"
|
||||
id("io.gitlab.arturbosch.detekt") version "1.17.1"
|
||||
id("io.gitlab.arturbosch.detekt") version "1.18.0-RC2"
|
||||
id("jacoco")
|
||||
id("java")
|
||||
id("java-library")
|
||||
id("maven-publish")
|
||||
id("net.thauvin.erik.gradle.semver") version "1.0.4"
|
||||
id("org.jetbrains.dokka") version "1.4.32"
|
||||
id("org.jetbrains.dokka") version "1.5.0"
|
||||
id("org.sonarqube") version "3.3"
|
||||
id("signing")
|
||||
kotlin("jvm") version "1.5.10"
|
||||
kotlin("kapt") version "1.5.10"
|
||||
kotlin("jvm") version "1.5.21"
|
||||
kotlin("kapt") version "1.5.21"
|
||||
}
|
||||
|
||||
group = "net.thauvin.erik"
|
||||
|
@ -107,8 +107,8 @@ tasks {
|
|||
jacocoTestReport {
|
||||
dependsOn(test)
|
||||
reports {
|
||||
xml.isEnabled = true
|
||||
html.isEnabled = true
|
||||
xml.required.set(true)
|
||||
html.required.set(true)
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -130,7 +130,7 @@ tasks {
|
|||
jdkVersion.set(8)
|
||||
includes.from("config/dokka/packages.md")
|
||||
sourceLink {
|
||||
localDirectory.set(file("/src/main/kotlin/"))
|
||||
localDirectory.set(file("src/main/kotlin/"))
|
||||
remoteUrl.set(URL("https://github.com/ethauvin/${project.name}/tree/master/src/main/kotlin/"))
|
||||
remoteLineSuffix.set("#L")
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue