settings.gradle 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. pluginManagement {
  2. repositories {
  3. google()
  4. mavenCentral()
  5. gradlePluginPortal()
  6. }
  7. }
  8. dependencyResolutionManagement {
  9. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  10. repositories {
  11. google()
  12. mavenCentral()
  13. jcenter()
  14. // Add the following lines to include the Nexilis UC repository into your app
  15. maven {
  16. url "https://nexilis.io/artifactory/nexilis-libs/"
  17. credentials {
  18. username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
  19. password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
  20. }
  21. }
  22. // Add the following lines to include the Nexilis Security Shield repository into your app
  23. maven {
  24. url "https://nexilis.io/artifactory/security-libs/"
  25. credentials {
  26. username = "**REPLACE*WITH*YOUR*MAVEN*USERNAME**"
  27. password = "**REPLACE*WITH*YOUR*MAVEN*PASSWORD**"
  28. }
  29. }
  30. maven { url 'https://maven.google.com' }
  31. maven { url 'https://jitpack.io' }
  32. }
  33. }
  34. rootProject.name = "NexilisSampleCodeBurger"
  35. include ':app'