jooq/jOOQ-codegen/src/main/java/module-info.java
2022-05-31 12:06:37 +02:00

20 lines
519 B
Java

/**
* The jOOQ codegen module.
*/
module org.jooq.codegen {
// Other jOOQ modules
requires transitive org.jooq.meta;
// Nullability annotations for better Kotlin interop
requires static transitive org.jetbrains.annotations;
// JAXB is used optionally for loading a variety of XML content, including
// - Settings (org.jooq.conf)
// - InformationSchema (org.jooq.util.xml.jaxb)
requires static jakarta.xml.bind;
exports org.jooq.codegen;
exports org.jooq.codegen.example;
}