io.atlasgo.hibernate-provider-gradle-plugin
Owner:
Ariga It
Atlas plugin, used as a database schema provider to Atlas.
https://github.com/ariga/atlas-provider-hibernate
Sources: https://github.com/ariga/atlas-provider-hibernate.git
Version 3.8.2 (latest)
Created 27 June 2024.
Atlas plugin, used as a database schema provider to Atlas.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.atlasgo.hibernate-provider-gradle-plugin") version "3.8.2"
}
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.atlasgo.hibernate-provider-gradle-plugin:io.atlasgo.hibernate-provider-gradle-plugin.gradle.plugin:3.8.2") }
It can then be applied in the precompiled script plugin:plugins { id("io.atlasgo.hibernate-provider-gradle-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.atlasgo.hibernate-provider-gradle-plugin:io.atlasgo.hibernate-provider-gradle-plugin.gradle.plugin:3.8.2") } } apply(plugin = "io.atlasgo.hibernate-provider-gradle-plugin")
- Applying plugins to all subprojects .