26 lines
No EOL
591 B
Text
26 lines
No EOL
591 B
Text
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()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "Pi-helper"
|
|
include(":app", ":desktop", ":shared") |