You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

36 lines
1.3 KiB

rootProject.name = "kmpResourcePublication"
include(":cmplib")
include(":featureModule")
//include(":appModule")
pluginManagement {
repositories {
mavenLocal()
gradlePluginPortal()
mavenCentral()
google()
//todo temporary repo for custom KGP plugin
maven("https://packages.jetbrains.team/files/p/mpp/kgp-for-compose2")
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/")
}
plugins {
id("org.jetbrains.kotlin.multiplatform").version("KOTLIN_VERSION_PLACEHOLDER")
id("org.jetbrains.compose").version("COMPOSE_GRADLE_PLUGIN_VERSION_PLACEHOLDER")
id("com.android.library").version("AGP_VERSION_PLACEHOLDER")
id("com.android.application").version("AGP_VERSION_PLACEHOLDER")
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
//todo temporary repo for custom KGP plugin
maven("https://packages.jetbrains.team/files/p/mpp/kgp-for-compose2")
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/")
mavenLocal()
maven {
url = uri(rootProject.projectDir.resolve("my-mvn"))
}
}
}