logviewer/settings.gradle
Tristan faf33576ce
Some checks failed
Build and Publish / build_and_publish (push) Failing after 1s
initial logviewer module implementation, including a sample app
2026-02-05 12:37:03 +01:00

19 lines
389 B
Groovy

pluginManagement {
repositories {
maven {
url "https://mvn.thedevstack.de/mvn"
}
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
maven {
url "https://mvn.thedevstack.de/mvn"
}
}
}
rootProject.name = "LogViewer"
include ':app'
include ':logviewer'