Files
floret-kit/settings.gradle.kts
Jean-Luc Makiola 367a8ff8af core-reminders: shared reminder-lead plumbing (ReminderUnit, override model + codec)
Pure-Kotlin module, drawn from the duplicate reminder logic in Agendula and
Calendula: the lead-time unit model (ReminderUnit / decomposeReminderMinutes),
the per-target override model (ReminderOverride + reminderLeadFor /
applyReminderOverride) and the stored-format codec (ReminderOverrideCodec).

The codec's separators are configurable so each app keeps its on-disk format
(Agendula stores id:minutes, Calendula id=minutes) without a data migration.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-28 14:11:55 +02:00

39 lines
1.3 KiB
Kotlin

pluginManagement {
repositories {
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
mavenCentral()
gradlePluginPortal()
}
}
// NB: deliberately NO Gradle Java-toolchain auto-download resolver plugin here.
// Consuming apps build this as an included build, and Calendula publishes via
// official F-Droid reproducible builds whose offline source scanner rejects any
// toolchain resolver that can fetch a JDK at build time. Modules set jvmTarget
// directly and must not add a Java toolchain block that needs such a resolver.
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
// floret-kit — the shared Material 3 Expressive design system + plumbing for the
// Floret family of apps (Calendula, Agendula, …). Consumed by each app as a git
// submodule wired in via Gradle `includeBuild`, built from source (F-Droid-safe).
rootProject.name = "floret-kit"
include(":core-time")
include(":core-reminders")
include(":core-crash")
include(":identity")
include(":components")