Illya Graf-Boyko
Illya Graf-Boyko
Version 2 ist not released yet. It is not complete tested. The only thing I can do is to release an alpha version.
@algyy I do not have any plans about releasing version 2.0 for now. Currently committed state still does not achieve the goal for the version 2.0. Lack of time does...
Default JPAModelgen source dir is `src/jpaModelgen/java` See https://github.com/iboyko/gradle-plugins/tree/master/jpamodelgen-plugin#jpamodelgensourcesdir
jcenter repository war deprecated for this plugin after plugin version 1.1.2. The version 1.1.2 is still present at jcenter and should be available. Further versions other the plugin are only...
Thanks :) `compileJpaModelgen` Task ist an extra compile Task that runs before `compileJava` Task and handles only Jpa Modelgen generation. For Lombok generation you should configure an extra generation task...
Hi. Try to use `${buildDir}/generated/src/java/` value as jpaModelgen. jpaModelgenSourcesDir ``` jpaModelgen { library = "org.hibernate:hibernate-jpamodelgen:5.2.11.Final" jpaModelgenSourcesDir = "${buildDir}/generated/src/java/" } ```
Currently there is no option to generate Hibernate Metamodel for Test sources.
Hi, In normal case the folder with generated sources is automatically added to main sourceset without any configuration needed from your side. All classes that are present in this folder...
Sorry for so late answer. I have committed sample project for the latest plugin version 1.1.4 (Commit ef43866) https://github.com/iboyko/gradle-plugins/tree/master/samples/jpamodelgen-sample Project generation target folder is `src/generated/java`. I've also added a [TestCase](https://github.com/iboyko/gradle-plugins/blob/master/samples/jpamodelgen-sample/src/test/java/com/github/iboyko/samples/jpamodelgen/entity/DomainObject2Test.java)....
Hi @olegkoskin, I have tried it out with IDEA 2017.2.6 using [jpamodelgen-sample](https://github.com/iboyko/gradle-plugins/tree/master/samples/jpamodelgen-sample) configuration. I've imported this project as gradle project without adding idea modules pro source set and it works...