星火管控
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings.gradle.kts 784B

12345678910111213141516171819202122232425
  1. pluginManagement {
  2. repositories {
  3. maven (url="https://maven.aliyun.com/repository/google")
  4. maven (url="https://maven.aliyun.com/repository/public")//jcenter public 阿里最新地址
  5. google()
  6. mavenCentral()
  7. gradlePluginPortal()
  8. maven(url="https://jitpack.io")
  9. }
  10. }
  11. dependencyResolutionManagement {
  12. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  13. repositories {
  14. maven (url="https://maven.aliyun.com/repository/google")
  15. maven (url="https://maven.aliyun.com/repository/public")//jcenter public 阿里最新地址
  16. google()
  17. mavenCentral()
  18. maven(url="https://jitpack.io")
  19. }
  20. }
  21. rootProject.name = "XhlyManageApp"
  22. include(":app")
  23. include(":corelib")
  24. include(":websocket")