mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
build.gradle: Use not-deprecated methods
This commit is contained in:
parent
7d7b4e6e53
commit
b252fc808a
1 changed files with 2 additions and 2 deletions
|
@ -507,7 +507,7 @@ configure(gplLicensedProjects) {
|
|||
|
||||
configure(androidBootClasspathProjects) {
|
||||
compileJava {
|
||||
options.bootClasspath = androidBootClasspath
|
||||
options.bootstrapClasspath = files(androidBootClasspath)
|
||||
}
|
||||
javadoc {
|
||||
classpath += files(androidBootClasspath)
|
||||
|
@ -526,7 +526,7 @@ task jacocoRootReport(type: org.gradle.testing.jacoco.tasks.JacocoReport) {
|
|||
executionData = files(projectsWithUnitTests.jacocoTestReport.executionData)
|
||||
reports {
|
||||
xml.enabled true
|
||||
xml.destination ="${buildDir}/reports/jacoco/test/jacocoTestReport.xml"
|
||||
xml.destination file("${buildDir}/reports/jacoco/test/jacocoTestReport.xml")
|
||||
}
|
||||
// We could remove the following setOnlyIf line, but then
|
||||
// jacocoRootReport would silently be SKIPPED if something with
|
||||
|
|
Loading…
Reference in a new issue