File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -305,16 +305,16 @@ subprojects {
305
305
}
306
306
307
307
src " ${ rootUrl} io/micrometer/${ project.name} /${ compatibleVersion} /${ project.name} -${ compatibleVersion} .jar"
308
- dest " ${ buildDir } / baselineLibs/${ project.name} -${ compatibleVersion} .jar"
308
+ dest layout . buildDirectory . file( " baselineLibs/${ project.name} -${ compatibleVersion} .jar" )
309
309
}
310
310
311
311
task japicmp(type : me.champeau.gradle.japicmp.JapicmpTask ) {
312
- oldClasspath. from(files( " ${ buildDir } / baselineLibs/${ project.name} -${ compatibleVersion} .jar" ))
312
+ oldClasspath. from(layout . buildDirectory . file( " baselineLibs/${ project.name} -${ compatibleVersion} .jar" ))
313
313
newClasspath. from(files(jar. archiveFile, project(" :${ project.name} " ). jar))
314
314
onlyBinaryIncompatibleModified = true
315
315
failOnModification = true
316
316
failOnSourceIncompatibility = true
317
- txtOutputFile = file(" ${ project.buildDir } / reports/japi.txt" )
317
+ txtOutputFile = project . layout . buildDirectory . file(" reports/japi.txt" )
318
318
ignoreMissingClasses = true
319
319
includeSynthetic = true
320
320
You can’t perform that action at this time.
0 commit comments