settings.gradle.kts 834 B

1234567891011121314151617181920212223242526272829303132333435
  1. // SPDX-FileCopyrightText: Adam Evyčędo
  2. //
  3. // SPDX-License-Identifier: GPL-3.0-or-later
  4. pluginManagement {
  5. repositories {
  6. gradlePluginPortal()
  7. google()
  8. mavenCentral()
  9. }
  10. }
  11. val cacheUser: String by settings
  12. val cachePass: String by settings
  13. buildCache {
  14. remote<HttpBuildCache> {
  15. url = uri("https://cranberry.apiote.xyz")
  16. isPush = true
  17. credentials {
  18. username = cacheUser
  19. password = cachePass
  20. }
  21. // on command line add -PcacheUser=user -PcachePassword=password or in ~/.gradle/gradle.properies
  22. }
  23. }
  24. dependencyResolutionManagement {
  25. repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  26. repositories {
  27. google()
  28. mavenCentral()
  29. }
  30. }
  31. rootProject.name = "Bimba"
  32. include(":app")
  33. include(":fruchtfleisch")