43 lines
950 B
Kotlin
43 lines
950 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url = uri("https://jitpack.io") }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "SMOA"
|
|
|
|
include(":app")
|
|
include(":core:auth")
|
|
include(":core:security")
|
|
include(":core:common")
|
|
include(":core:barcode")
|
|
include(":core:as4")
|
|
include(":core:eidas")
|
|
include(":core:signing")
|
|
include(":core:certificates")
|
|
include(":modules:credentials")
|
|
include(":modules:directory")
|
|
include(":modules:communications")
|
|
include(":modules:meetings")
|
|
include(":modules:browser")
|
|
include(":modules:orders")
|
|
include(":modules:evidence")
|
|
include(":modules:reports")
|
|
include(":modules:atf")
|
|
include(":modules:ncic")
|
|
include(":modules:military")
|
|
include(":modules:judicial")
|
|
include(":modules:intelligence")
|
|
|