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)
Created 20 December 2016.
                Hibernate tools plugin to reverse engineering database.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("org.hibernate.gradle.tools") version "1.2.5"
}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("org.hibernate.gradle.tools:org.hibernate.gradle.tools.gradle.plugin:1.2.5") }It can then be applied in the precompiled script plugin:plugins { id("org.hibernate.gradle.tools") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.hibernate.gradle.tools:org.hibernate.gradle.tools.gradle.plugin:1.2.5") } } apply(plugin = "org.hibernate.gradle.tools")
- Applying plugins to all subprojects .