settings.gradle 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. maven {
  13. url "https://nexilis.io/artifactory/ob-in-plugin/"
  14. credentials {
  15. username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
  16. password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
  17. }
  18. }
  19. }
  20. }
  21. dependencyResolutionManagement {
  22. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  23. repositories {
  24. google()
  25. mavenCentral()
  26. maven {
  27. url "https://nexilis.io/artifactory/ui-uc-api-libs/"
  28. credentials {
  29. username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
  30. password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
  31. }
  32. }
  33. maven {
  34. url "https://nexilis.io/artifactory/ss-libs/"
  35. credentials {
  36. username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
  37. password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
  38. }
  39. }
  40. }
  41. }
  42. rootProject.name = "NexilisSampleCodeShield"
  43. include ':app'