settings.gradle 1.3 KB

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