mirror of
https://github.com/msfjarvis/compose-lobsters
synced 2025-08-15 02:57:04 +05:30
build: cleanup dependency resolution and remove unused dependency
This commit is contained in:
parent
d65e14b2c8
commit
450d4836c5
3 changed files with 10 additions and 6 deletions
|
@ -24,11 +24,6 @@ group = "dev.msfjarvis.claw"
|
||||||
version = "1.0"
|
version = "1.0"
|
||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
repositories {
|
|
||||||
mavenCentral()
|
|
||||||
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
|
|
||||||
google()
|
|
||||||
}
|
|
||||||
apply(plugin = "com.diffplug.spotless")
|
apply(plugin = "com.diffplug.spotless")
|
||||||
configure<com.diffplug.gradle.spotless.SpotlessExtension> {
|
configure<com.diffplug.gradle.spotless.SpotlessExtension> {
|
||||||
kotlin {
|
kotlin {
|
||||||
|
|
|
@ -30,7 +30,7 @@ kotlin {
|
||||||
implementation("com.alialbaali.kamel:kamel-image:0.2.1")
|
implementation("com.alialbaali.kamel:kamel-image:0.2.1")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
val commonTest by getting { dependencies { implementation(kotlin("test")) } }
|
val commonTest by getting
|
||||||
val androidMain by getting { dependencies { implementation(libs.androidx.browser) } }
|
val androidMain by getting { dependencies { implementation(libs.androidx.browser) } }
|
||||||
val androidTest by getting { dependsOn(androidAndroidTestRelease) }
|
val androidTest by getting { dependsOn(androidAndroidTestRelease) }
|
||||||
val desktopMain by getting
|
val desktopMain by getting
|
||||||
|
|
|
@ -7,6 +7,15 @@ pluginManagement {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
dependencyResolutionManagement {
|
||||||
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
||||||
|
repositories {
|
||||||
|
mavenCentral()
|
||||||
|
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
|
||||||
|
google()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
rootProject.name = "Claw"
|
rootProject.name = "Claw"
|
||||||
|
|
||||||
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue