This is a fork of the original Grails Hibernate Filter Plugin created from fork fingo/grails-hibernate-plugin to make it work with Grails 3.2.3 > *, Hibernate 5, and GORM 6.
This repo contains two projects:
- hibernate-filter-plugin - with plugin code
- hibernate-filter-example - with example application using plugin
Clone the repository and execute in main directory command:
./gradlew hibernate-filter-plugin:jar
You can publish it to your maven local repository using:
./gradlew hibernate-filter-plugin:publishToMavenLocal
To run example application use command:
./gradlew hibernate-filter-example:bootRun
Add dependency in build.gradle:
repositories {
maven { url "https://dl.bintray.com/goodstartgenetics/grails3-plugins/" }
}
dependencies {
compile "org.grails.plugins:hibernate-filter-plugin:0.5.5"
}
Please refer to this project's wiki for usage.