org.hibernate.gradle.tools
所有者: jonathan MERCIER
Hibernate 工具插件,用于数据库逆向工程。
https://github.com/institut-de-genomique/
资源:https://github.com/institut-de-genomique/hibernatetools-gradle-plugin
使用 插件 DSL
plugins {
id("org.hibernate.gradle.tools") version "1.2.5"
}
使用 旧式插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.hibernate.gradle.tools:hibernatetools-gradle-plugin:1.2.5")
}
}
apply(plugin = "org.hibernate.gradle.tools")
使用 插件 DSL
plugins {
id "org.hibernate.gradle.tools" version "1.2.5"
}
使用 旧式插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.hibernate.gradle.tools:hibernatetools-gradle-plugin:1.2.5"
}
}
apply plugin: "org.hibernate.gradle.tools"