See gh-18192
This commit is contained in:
Johnny Lim
2019-09-10 22:29:34 +09:00
committed by Stephane Nicoll
parent 99960b0c26
commit 5b41c3b608
15 changed files with 24 additions and 22 deletions

View File

@@ -134,10 +134,12 @@ public class BootJar extends Jar implements BootArchive {
classpath);
}
@Override
public void setClasspath(Object classpath) {
this.classpath = getProject().files(classpath);
}
@Override
public void setClasspath(FileCollection classpath) {
this.classpath = getProject().files(classpath);
}