io.tcds.orm.migrations
Owner: Thiago Cordeiro
Migration tool for Kotlin Simple ORM
https://github.com/tcds-io/kotlin-orm-migrations
Sources: https://github.com/tcds-io/kotlin-orm-migrations
Version 0.1.6 (latest)
Created 01 November 2023.
Migration tool for Kotlin Simple ORM
Add this plugin to your build using the plugins DSL:
plugins {
id("io.tcds.orm.migrations") version "0.1.6"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.tcds.orm.migrations:io.tcds.orm.migrations.gradle.plugin:0.1.6") }
It can then be applied in the precompiled script plugin:plugins { id("io.tcds.orm.migrations") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.tcds.orm.migrations:io.tcds.orm.migrations.gradle.plugin:0.1.6") } } apply(plugin = "io.tcds.orm.migrations")
- Applying plugins to all subprojects .