This is an automated email from the git hooks/post-receive script. New commit to branch feature/jooq in repository wao. See https://gitlab.nuiton.org/None/wao.git commit 395cf99b4713b834a7e459fd2a5d0cc59ac3d6d9 Author: Brendan Le Ny <bleny@codelutin.com> Date: Fri Apr 1 16:33:08 2016 +0200 Génère un tas de trucs --- wao-persistence-jooq/pom.xml | 84 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) diff --git a/wao-persistence-jooq/pom.xml b/wao-persistence-jooq/pom.xml index a50ab51..95dadd6 100644 --- a/wao-persistence-jooq/pom.xml +++ b/wao-persistence-jooq/pom.xml @@ -108,6 +108,90 @@ <packageName>fr.ifremer.wao.entity</packageName> <directory>target/generated-sources/jooq</directory> </target> + + <!-- These properties can be added to the generate element: --> + <generate> + <!-- Primary key / foreign key relations should be generated and used. + This is a prerequisite for various advanced features. + Defaults to true --> + <relations>true</relations> + + <!-- Generate deprecated code for backwards compatibility + Defaults to true --> + <deprecated>true</deprecated> + + <!-- Do not reuse this property. It is deprecated as of jOOQ 3.3.0 --> + <instanceFields>true</instanceFields> + + <!-- Generate the javax.annotation.Generated annotation to indicate + jOOQ version used for source code. + Defaults to true --> + <generatedAnnotation>true</generatedAnnotation> + + <!-- Generate jOOQ Record classes for type-safe querying. You can + turn this off, if you don't need "active records" for CRUD + Defaults to true --> + <records>true</records> + + <!-- Generate POJOs in addition to Record classes for usage of the + ResultQuery.fetchInto(Class) API + Defaults to false --> + <pojos>true</pojos> + + <!-- Generate immutable POJOs for usage of the ResultQuery.fetchInto(Class) API + This overrides any value set in <pojos/> + Defaults to false --> + <immutablePojos>false</immutablePojos> + + <!-- Generate interfaces that will be implemented by records and/or pojos. + You can also use these interfaces in Record.into(Class<?>) and similar + methods, to let jOOQ return proxy objects for them. + Defaults to false --> + <interfaces>true</interfaces> + + <!-- Generate DAOs in addition to POJO classes + Defaults to false --> + <daos>true</daos> + + <!-- Annotate POJOs and Records with JPA annotations for increased + compatibility and better integration with JPA/Hibernate, etc + Defaults to false --> + <jpaAnnotations>false</jpaAnnotations> + + <!-- Annotate POJOs and Records with JSR-303 validation annotations + Defaults to false --> + <validationAnnotations>false</validationAnnotations> + + <!-- Annotate DAOs with useful spring annotations such as @Repository or @Autowired + Defaults to false --> + <!--<springAnnotations>false</springAnnotations>--> + + <!-- Allow to turn off the generation of global object references, which include + + - Tables.java + - Sequences.java + - UDTs.java + + Turning off the generation of the above files may be necessary for very + large schemas, which exceed the amount of allowed constants in a class's + constant pool (64k) or, whose static initialiser would exceed 64k of + byte code + + Defaults to true --> + <globalObjectReferences>true</globalObjectReferences> + + <!-- Generate fluent setters in + + - records + - pojos + - interfaces + + Fluent setters are against the JavaBeans specification, but can be quite + useful to those users who do not depend on EL, JSP, JSF, etc. + + Defaults to false --> + <fluentSetters>false</fluentSetters> + </generate> </generator> </configuration> </plugin> -- To stop receiving notification emails like this one, please contact codelutin.com SCM administrator <admin+scm@codelutin.com>.