settings.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. mavenLocal()
  13. maven {
  14. url "http://192.168.1.38:8082/artifactory/ob-in-plugin/"
  15. credentials {
  16. username = repo_username
  17. password = repo_password
  18. }
  19. allowInsecureProtocol(true)
  20. }
  21. }
  22. }
  23. plugins {
  24. id "io.nexilis.dm-st-plugin" version "1.0"
  25. }
  26. dependencyResolutionManagement {
  27. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  28. repositories {
  29. google()
  30. mavenCentral()
  31. maven { url 'https://jitpack.io' }
  32. maven {
  33. url "http://192.168.1.38:8082/artifactory/ui-uc-api-libs/"
  34. credentials {
  35. username = repo_username
  36. password = repo_password
  37. }
  38. setAllowInsecureProtocol(true)
  39. }
  40. maven {
  41. url "http://192.168.1.38:8082/artifactory/ss-libs/"
  42. credentials {
  43. username = repo_username
  44. password = repo_password
  45. }
  46. setAllowInsecureProtocol(true)
  47. }
  48. }
  49. }
  50. rootProject.name = "dm-plugin"
  51. include ':app'
  52. include ':dm-plugin'
  53. include ':dm-set-plugin'