pihelper-android/settings.gradle.kts

26 lines
591 B
Text
Raw Normal View History

2024-11-16 23:40:25 +00:00
import java.net.URI
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
url = URI("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
maven {
url = URI("https://maven.pkg.jetbrains.space/public/p/compose/dev/")
}
}
}
pluginManagement {
repositories {
google()
mavenCentral()
gradlePluginPortal()
}
}
2021-06-04 00:34:44 +00:00
rootProject.name = "Pi-helper"
2024-11-16 23:40:25 +00:00
include(":app", ":desktop", ":shared")