mirror of
https://github.com/wgtunnel/android.git
synced 2026-06-02 00:29:08 +02:00
25 lines
408 B
Kotlin
25 lines
408 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
mavenLocal()
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
mavenLocal()
|
|
google()
|
|
mavenCentral()
|
|
maven { url = uri("https://jitpack.io") }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "WG Tunnel"
|
|
|
|
include(":app")
|
|
include(":logcatter")
|
|
include(":networkmonitor")
|