org.hibernate.gradle.tools
Owner: jonathan MERCIER
Hibernate tools plugin to reverse engineering database.
https://github.com/institut-de-genomique/
Sources: https://github.com/institut-de-genomique/hibernatetools-gradle-plugin
Version 1.2.5 (latest)
1.2.5
Created 20 December 2016.
Hibernate tools plugin to reverse engineering database.
Using the plugins DSL:
plugins {
id("org.hibernate.gradle.tools") version "1.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.hibernate.gradle.tools:hibernatetools-gradle-plugin:1.2.5")
}
}
apply(plugin = "org.hibernate.gradle.tools")
Using the plugins DSL:
plugins {
id "org.hibernate.gradle.tools" version "1.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.hibernate.gradle.tools:hibernatetools-gradle-plugin:1.2.5"
}
}
apply plugin: "org.hibernate.gradle.tools"