[jOOQ/jOOQ#13619] Revert this for now, until compilation issues are understood
This commit is contained in:
parent
c17bd6eba3
commit
768f5033b4
@ -53,12 +53,6 @@
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-meta</artifactId>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jetbrains</groupId>
|
||||
<artifactId>annotations</artifactId>
|
||||
<scope>provided</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
|
||||
|
||||
|
||||
@ -6,9 +6,6 @@ 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)
|
||||
|
||||
@ -7,7 +7,7 @@ module org.jooq.meta {
|
||||
requires transitive org.jooq;
|
||||
|
||||
// Nullability annotations for better Kotlin interop
|
||||
requires static transitive org.jetbrains.annotations;
|
||||
requires static org.jetbrains.annotations;
|
||||
|
||||
// JAXB is used optionally for loading a variety of XML content, including
|
||||
// - Settings (org.jooq.conf)
|
||||
|
||||
@ -7,7 +7,7 @@ module org.jooq.postgres.extensions {
|
||||
requires transitive org.jooq;
|
||||
|
||||
// Nullability annotations for better Kotlin interop
|
||||
requires static transitive org.jetbrains.annotations;
|
||||
requires static org.jetbrains.annotations;
|
||||
|
||||
// Vendor specific JDBC drivers
|
||||
requires static org.postgresql.jdbc;
|
||||
|
||||
@ -33,7 +33,7 @@ module org.jooq {
|
||||
requires static java.logging;
|
||||
|
||||
// Nullability annotations for better Kotlin interop
|
||||
requires static transitive org.jetbrains.annotations;
|
||||
requires static org.jetbrains.annotations;
|
||||
|
||||
requires transitive org.reactivestreams;
|
||||
requires transitive r2dbc.spi;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user