- Migrates Quartz to a KMP project

- Converts OpenTimestamps from java to Kotlin
- Moves OTS OkHttp setup to Quartz
This commit is contained in:
Vitor Pamplona
2025-08-27 17:32:39 -04:00
parent d2214889b6
commit 442f75fc41
979 changed files with 6285 additions and 5706 deletions
+13 -2
View File
@@ -7,6 +7,8 @@ plugins {
alias(libs.plugins.diffplugSpotless)
alias(libs.plugins.googleServices) apply false
alias(libs.plugins.jetbrainsComposeCompiler) apply false
alias(libs.plugins.kotlinMultiplatform) apply false
alias(libs.plugins.androidKotlinMultiplatformLibrary) apply false
}
allprojects {
@@ -39,9 +41,18 @@ allprojects {
subprojects {
afterEvaluate {
tasks.named("preBuild") {
dependsOn("spotlessApply")
try {
tasks.named("preBuild") {
dependsOn("spotlessApply")
}
} catch (UnknownTaskException ignored) {
tasks.matching {
it.name.startsWith("pre") && it.name.endsWith("Build")
}.configureEach {
dependsOn("spotlessApply")
}
}
}
}