Restructure compose-compiler project.
maven-publish Gradle plugin only publishes the default configuration of
projects and compose-compiler was using a custom one to do the jarjaring
of the code. This change updates it to use the main configration
instead. This makes it so that compose-compiler is published by
./gradlew createArchive again
Test: ./gradlew createArchive
Bug: 144572493
Change-Id: I51a39e5d0409c5d72f7383cb0624472c321eae79
diff --git a/ui/ui-android-view/build.gradle b/ui/ui-android-view/build.gradle
index 9888349..62375be 100644
--- a/ui/ui-android-view/build.gradle
+++ b/ui/ui-android-view/build.gradle
@@ -29,7 +29,7 @@
}
dependencies {
- kotlinPlugin project(path: ":compose:compose-compiler", configuration: "embeddablePlugin")
+ kotlinPlugin project(path: ":compose:compose-compiler")
implementation(KOTLIN_COROUTINES_ANDROID)
implementation(KOTLIN_STDLIB)