pihelper-android/build.gradle.kts

22 lines
389 B
Text
Raw Normal View History

2022-12-24 04:28:14 +00:00
import java.net.URI
2021-06-04 00:34:44 +00:00
buildscript {
repositories {
gradlePluginPortal()
2021-06-04 00:34:44 +00:00
google()
mavenCentral()
}
dependencies {
classpath(libs.bundles.plugins)
2021-06-04 00:34:44 +00:00
}
}
2022-10-19 01:29:37 +00:00
allprojects {
repositories {
google()
mavenCentral()
2022-12-24 04:28:14 +00:00
maven {
url = URI("https://s01.oss.sonatype.org/content/repositories/snapshots/")
}
2022-10-19 01:29:37 +00:00
}
}