1234567891011121314151617181920212223 |
- pluginManagement {
- repositories {
- **ARTIFACTORYREPOSITORY**
- gradlePluginPortal()
- google()
- mavenCentral()
- }
- }
-
- include ':launcher', ':unityLibrary'
- **INCLUDES**
-
- dependencyResolutionManagement {
- repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
- repositories {
- **ARTIFACTORYREPOSITORY**
- google()
- mavenCentral()
- flatDir {
- dirs "${project(':unityLibrary').projectDir}/libs"
- }
- }
- }
|