Nessuna descrizione
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settingsTemplate.gradle.DISABLED 485B

1234567891011121314151617181920212223
  1. pluginManagement {
  2. repositories {
  3. **ARTIFACTORYREPOSITORY**
  4. gradlePluginPortal()
  5. google()
  6. mavenCentral()
  7. }
  8. }
  9. include ':launcher', ':unityLibrary'
  10. **INCLUDES**
  11. dependencyResolutionManagement {
  12. repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
  13. repositories {
  14. **ARTIFACTORYREPOSITORY**
  15. google()
  16. mavenCentral()
  17. flatDir {
  18. dirs "${project(':unityLibrary').projectDir}/libs"
  19. }
  20. }
  21. }