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 { ...@@ -41,8 +41,8 @@ dependencies {
} }
java { java {
project.sourceCompatibility = JavaVersion.VERSION_1_8 sourceCompatibility = JavaVersion.VERSION_1_8
project.targetCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8
withSourcesJar() withSourcesJar()
withJavadocJar() withJavadocJar()
...@@ -58,7 +58,7 @@ jacocoTestReport { ...@@ -58,7 +58,7 @@ jacocoTestReport {
reports { reports {
xml.required = false xml.required = false
csv.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