File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,11 @@ import org.jetbrains.compose.internal.de.undercouch.gradle.tasks.download.Downlo
44
55plugins{
66 id(" java" )
7-
87 kotlin(" jvm" ) version libs.versions.kotlin
8+
99 alias(libs.plugins.compose.compiler)
1010 alias(libs.plugins.jetbrainsCompose)
1111 alias(libs.plugins.serialization)
12-
1312 alias(libs.plugins.download)
1413}
1514
@@ -102,7 +101,9 @@ dependencies {
102101 implementation(libs.kaml)
103102}
104103
105- // LEGACY ACTIONS
104+ // LEGACY TASKS
105+ // Most of these are shims to be compatible with the old build system
106+ // They should be removed in the future, as we work towards making things more Gradle-native
106107tasks.register<Copy >(" copyCore" ){
107108 dependsOn(project(" :core" ).tasks.jar)
108109 from(project(" :core" ).layout.buildDirectory.dir(" libs" ))
Original file line number Diff line number Diff line change @@ -44,6 +44,9 @@ tasks.compileJava{
4444 options.encoding = " UTF-8"
4545}
4646
47+ // LEGACY TASKS
48+ // Most of these are shims to be compatible with the old build system
49+ // They should be removed in the future, as we work towards making things more Gradle-native
4750tasks.register<Copy >(" extraResources" ){
4851 dependsOn(" :java:copyCore" )
4952 from(" ." )
You can’t perform that action at this time.
0 commit comments