settings.gradle.kts 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. pluginManagement {
  2. repositories {
  3. google {
  4. content {
  5. includeGroupByRegex("com\\.android.*")
  6. includeGroupByRegex("com\\.google.*")
  7. includeGroupByRegex("androidx.*")
  8. }
  9. }
  10. mavenCentral()
  11. gradlePluginPortal()
  12. }
  13. }
  14. dependencyResolutionManagement {
  15. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  16. repositories {
  17. google()
  18. mavenCentral()
  19. maven {
  20. url = uri("https://oss.sonatype.org/content/repositories/snapshots")
  21. }
  22. mavenLocal()
  23. }
  24. }
  25. rootProject.name = "Spine Android Examples"
  26. includeBuild("../spine-libgdx") {
  27. dependencySubstitution {
  28. substitute(module("com.esotericsoftware.spine:spine-libgdx")).using(project(":spine-libgdx"))
  29. }
  30. }
  31. //includeBuild("../../libgdx") {
  32. // dependencySubstitution {
  33. // substitute(module("com.badlogicgames.gdx:gdx")).using(project(":gdx"))
  34. // }
  35. //}
  36. include(":app")
  37. include(":spine-android")