[Gradle] Schedule 'KotlinSourceSet.requiresVisibilityOf' for removal in 2.0

^KT-58220 Verification Pending
See: KT-58228
This commit is contained in:
Sebastian Sellmair
2023-04-25 10:39:12 +02:00
committed by Space Team
parent fa40c1115a
commit e72f236bd4
3 changed files with 7 additions and 2 deletions
@@ -43,10 +43,12 @@ interface KotlinSourceSet : Named, HasProject, HasMutableExtras, HasKotlinDepend
const val COMMON_TEST_SOURCE_SET_NAME = "commonTest"
}
val customSourceFilesExtensions: Iterable<String> // lazy iterable expected
@Deprecated("Scheduled for removal with Kotlin 2.0")
val requiresVisibilityOf: Set<KotlinSourceSet>
@Deprecated("Scheduled for removal with Kotlin 2.0")
fun requiresVisibilityOf(other: KotlinSourceSet)
val customSourceFilesExtensions: Iterable<String> // lazy iterable expected
fun addCustomSourceFilesExtensions(extensions: List<String>) {}
}