mirror of
https://github.com/yuga-hashimoto/openclaw-assistant.git
synced 2026-08-14 07:02:02 +00:00
Fixes default port logic in parseGatewayEndpoint: WSS/HTTPS bare URLs default to 443, WS/HTTP default to 18789. Display URL omits port when it matches protocol default.
21 lines
502 B
Kotlin
21 lines
502 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
maven { url = uri("https://repo1.maven.org/maven2/") }
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
maven { url = uri("https://repo1.maven.org/maven2/") }
|
|
maven { url = uri("https://jitpack.io") }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "OpenClawAssistant"
|
|
include(":app")
|
|
include(":wear")
|
|
include(":shared")
|