settings.gradle 795 B

12345678910111213141516171819202122232425262728
  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 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. maven { url 'https://maven.google.com' }
  23. maven { url 'https://jitpack.io' }
  24. }
  25. }
  26. rootProject.name = "NexilisSampleCodeBurger"
  27. include ':app'