mirror of
https://github.com/valmojr/armatak.git
synced 2026-06-13 13:23:28 +00:00
SIMTAK 1.0 Stable Version Developed to use with Armatak addon for ARMA 3 Copyright ©2024 Valmo Trindade All rights reserved. Take a look on the main project: https://github.com/valmojr/armatak
24 lines
531 B
Kotlin
24 lines
531 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google {
|
|
content {
|
|
includeGroupByRegex("com\\.android.*")
|
|
includeGroupByRegex("com\\.google.*")
|
|
includeGroupByRegex("androidx.*")
|
|
}
|
|
}
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "SIMTAK"
|
|
include(":app")
|
|
|