settings.gradle 1.4 KB

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