Skip to content

Commit b6b9ace

Browse files
authored
Merge pull request #7 from jacobras/settings-gradle-kotlin-dsl
Migrate settings to Kotlin Gradle DSL
2 parents 2ba90a1 + aa6ca2e commit b6b9ace

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

compose-action-menu/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import org.gradle.kotlin.dsl.libs
66
plugins {
77
id("com.android.library")
88
id("org.jetbrains.kotlin.android")
9-
id("maven-publish")
109
}
1110

1211
android {

settings.gradle renamed to settings.gradle.kts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@file:Suppress("UnstableApiUsage")
2+
13
pluginManagement {
24
repositories {
35
gradlePluginPortal()
@@ -13,5 +15,5 @@ dependencyResolutionManagement {
1315
}
1416
}
1517
rootProject.name = "ComposeActionMenu"
16-
include ':sample-app'
17-
include ':compose-action-menu'
18+
include(":sample-app")
19+
include(":compose-action-menu")

0 commit comments

Comments
 (0)