Build: Replace configuration dependencies with extends

Configuration dependencies on configuration are not allowed in Gradle 8
This commit is contained in:
Vyacheslav Gerasimov
2023-03-19 16:03:11 +01:00
committed by Space Team
parent fae4cbb415
commit bd9f096cfd
2 changed files with 9 additions and 8 deletions
+5 -5
View File
@@ -113,6 +113,11 @@ kotlinNativeInterop {
configurations {
compilerApi {
extendsFrom kotlinNativeInterop['llvm'].configuration
extendsFrom kotlinNativeInterop['files'].configuration
extendsFrom kotlinNativeInterop['env'].configuration
}
kotlin_compiler_jar
kotlin_stdlib_jar
kotlin_reflect_jar
@@ -161,11 +166,6 @@ dependencies {
compileOnly(jpsModel())
}
compilerApi kotlinNativeInterop['llvm'].configuration
compilerApi kotlinNativeInterop['files'].configuration
compilerApi kotlinNativeInterop['env'].configuration
cli_bcApi sourceSets.compiler.output
cli_bcApiElements sourceSets.cli_bc.output