Skip to content
Snippets Groups Projects
Commit 8d4b1642 authored by dgelessus's avatar dgelessus
Browse files

Fix a few Gradle deprecation warnings

parent 39552da3
No related branches found
No related tags found
No related merge requests found
......@@ -41,8 +41,8 @@ dependencies {
}
java {
project.sourceCompatibility = JavaVersion.VERSION_1_8
project.targetCompatibility = JavaVersion.VERSION_1_8
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar()
withJavadocJar()
......@@ -58,7 +58,7 @@ jacocoTestReport {
reports {
xml.required = false
csv.required = false
html.destination file("${buildDir}/jacocoHtml")
html.outputLocation = layout.buildDirectory.dir('jacocoHtml')
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment