Browse Source

:compose:animation:animation-graphics (#1441)

pull/1447/head
Igor Demin 3 years ago committed by GitHub
parent
commit
9d29f50691
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      compose/build.gradle.kts
  2. 3
      gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt

3
compose/build.gradle.kts

@ -29,6 +29,7 @@ tasks.register("publishComposeJb") {
listOf(
":compose:animation:animation",
":compose:animation:animation-core",
":compose:animation:animation-graphics",
":compose:foundation:foundation",
":compose:foundation:foundation-layout",
":compose:material:material",
@ -202,4 +203,4 @@ fun readComposeModules(
version = version,
localDir = repoRoot.get().asFile.resolve("$group/$artifact/$version")
)
}
}

3
gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose/ComposePlugin.kt

@ -91,6 +91,7 @@ class ComposePlugin : Plugin<Project> {
listOf(
"androidx.compose.animation:animation",
"androidx.compose.animation:animation-core",
"androidx.compose.animation:animation-graphics",
"androidx.compose.compiler:compiler",
"androidx.compose.compiler:compiler-hosted",
"androidx.compose.foundation:foundation",
@ -99,6 +100,7 @@ class ComposePlugin : Plugin<Project> {
"androidx.compose.material:material-icons-core",
"androidx.compose.material:material-icons-extended",
"androidx.compose.material:material-ripple",
"androidx.compose.material:material3",
"androidx.compose.runtime:runtime",
"androidx.compose.runtime:runtime-saveable",
"androidx.compose.ui:ui",
@ -157,6 +159,7 @@ class ComposePlugin : Plugin<Project> {
object Dependencies {
val desktop = DesktopDependencies
val animation get() = composeDependency("org.jetbrains.compose.animation:animation")
val animationGraphics get() = composeDependency("org.jetbrains.compose.animation:animation-graphics")
val foundation get() = composeDependency("org.jetbrains.compose.foundation:foundation")
val material get() = composeDependency("org.jetbrains.compose.material:material")
@ExperimentalComposeLibrary

Loading…
Cancel
Save