File tree Expand file tree Collapse file tree
gradle-plugins/compose/src/main/kotlin/org/jetbrains/compose Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ abstract class ComposePlugin : Plugin<Project> {
6666
6767 @Suppress(" DEPRECATION" )
6868 class Dependencies (project : Project ) {
69+ @Deprecated(" Specify dependency directly" )
6970 val desktop = DesktopDependencies
7071 @Deprecated(" Specify dependency directly" , replaceWith = ReplaceWith (" \" org.jetbrains.compose.animation:animation:${ComposeBuildConfig .composeVersion} \" " ))
7172 val animation get() = composeDependency(" org.jetbrains.compose.animation:animation" )
@@ -132,6 +133,7 @@ abstract class ComposePlugin : Plugin<Project> {
132133 @Deprecated(" Specify dependency directly" , replaceWith = ReplaceWith (" \" org.jetbrains.compose.ui:ui-test-junit4:${ComposeBuildConfig .composeVersion} \" " ))
133134 val uiTestJUnit4 get() = composeDependency(" org.jetbrains.compose.ui:ui-test-junit4" )
134135
136+ @Deprecated(" Specify dependency directly" , replaceWith = ReplaceWith (" \" org.jetbrains.compose.desktop:desktop:${ComposeBuildConfig .composeVersion} \" " ))
135137 val currentOs by lazy {
136138 composeDependency(" org.jetbrains.compose.desktop:desktop-jvm-${currentTarget.id} " )
137139 }
You can’t perform that action at this time.
0 commit comments