- Backend: ShallowEtagHeaderFilter for /api/v1/*, API-VERSIONING.md, README (tenant, CORS, Flyway, ETag) - k8s: backend-deployment.yaml (Deployment, Service, Secret/ConfigMap) - Web: scaffold with directory pull, 304 handling, touch-friendly UI - Android 16: ANDROID-16-TARGET.md; BuildConfig STUN/signaling, SMOAApplication configures InfrastructureManager - Domain: CertificateManager revocation stub, ReportService signReports, ZeroTrust/ThreatDetection minimal docs - TODO.md and IMPLEMENTATION_STATUS.md updated; communications README for endpoint config Co-authored-by: Cursor <cursoragent@cursor.com>
44 lines
970 B
Kotlin
44 lines
970 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")
|
|
include(":backend")
|
|
|