refactor: extrahiere ReiterLizenz in core-domain, aktualisiere Abhängigkeiten und behebe Windows-SQLite-Temp-Verzeichnisproblem
This commit is contained in:
@@ -60,6 +60,16 @@ sqldelight {
|
||||
create("AppDatabase") {
|
||||
packageName.set("at.mocode.frontend.core.localdb")
|
||||
generateAsync.set(true)
|
||||
// Workaround für SQLite-Temp-Verzeichnis Issue auf Windows
|
||||
verifyMigrations.set(false)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Workaround für SQLite-Temp-Verzeichnis Issue auf Windows. Das Plugin generiert dynamisch Tasks.
|
||||
// lazy task configuration avoids cache issues and intercepts dynamic tasks
|
||||
tasks.configureEach {
|
||||
if (name.contains("verify", ignoreCase = true) && name.contains("Migration", ignoreCase = true)) {
|
||||
enabled = false
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user