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