hibernate-orm/tooling/hibernate-gradle-plugin
Steve Ebersole 26dbafb2b3 HHH-15251 - Unified mapping XSD based on JPA 3.1;
- `mapping-3.1.0.xsd`
   - JAXB model for `mapping-3.1.0.xsd`
   - Overriding caching (region, usage, include) via partial mapping document
   - Initial hbm.xml -> mapping.xml transformation support
   - Gradle task for performing transformations
2022-05-20 06:46:44 -05:00
..
src HHH-15251 - Unified mapping XSD based on JPA 3.1; 2022-05-20 06:46:44 -05:00
.gitignore Include a new .gitignore file for tooling/hibernate-gradle-plugin as it's generated by Eclipse 2015-03-10 12:47:55 -04:00
README.adoc ORM + Gradle 2020-10-28 16:09:42 -05:00
hibernate-gradle-plugin.gradle HHH-15251 - Unified mapping XSD based on JPA 3.1; 2022-05-20 06:46:44 -05:00

README.adoc

= Hibernate ORM Gradle Plugin

A Gradle plugin for introducing Hibernate tasks and capabilities into a build.


== Set up

```
plugins {
  id 'org.hibernate.orm' version='X'
}

// HibernateOrmSpec
hibernate {
  ...
}
```

== Bytecode Enhancement

The plugin can perform build-time enhancement of the domain classes.  This is controlled
by the `enhancement` portion of the `hibernate` extension:

```
hibernate {
  // EnhancementSpec
  enhancement {
    // available options - all default to false
    lazyInitialization( true )
  }
}
```

== DSL

The `hibernate` DSL extension is the main entry into configuring the plugin

```
hibernate {
}
```

At this time, there is no configuration at this level.

== Capa

== Tasks

== Additional Resources

* https://plugins.gradle.org/plugin/org.hibernate.orm