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)
3.8.2
Created 27 June 2024.
Atlas plugin, used as a database schema provider to Atlas.
Using the plugins DSL:
plugins {
id("io.atlasgo.hibernate-provider-gradle-plugin") version "3.8.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.atlasgo:gradle-plugin:3.8.2")
}
}
apply(plugin = "io.atlasgo.hibernate-provider-gradle-plugin")
Using the plugins DSL:
plugins {
id "io.atlasgo.hibernate-provider-gradle-plugin" version "3.8.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.atlasgo:gradle-plugin:3.8.2"
}
}
apply plugin: "io.atlasgo.hibernate-provider-gradle-plugin"