Remove 'KotlinCompile.classpath' input

^KT-53748 Fixed
This commit is contained in:
Yahor Berdnikau
2023-04-25 18:21:17 +02:00
committed by Space Team
parent 82f94015f1
commit c52ad22795
@@ -98,16 +98,6 @@ abstract class KotlinCompile @Inject constructor(
@get:Internal // To support compile avoidance (ClasspathSnapshotProperties.classpathSnapshot will be used as input instead)
abstract override val libraries: ConfigurableFileCollection
@Deprecated(
"Replaced with 'libraries' input",
replaceWith = ReplaceWith("libraries"),
level = DeprecationLevel.ERROR
)
@get:Internal
var classpath: FileCollection
set(value) = libraries.setFrom(value)
get() = libraries
@get:Deprecated(
message = "Please migrate to compilerOptions.moduleName",
replaceWith = ReplaceWith("compilerOptions.moduleName")