[jOOQ/jOOQ#9401] Downgrade JAXB dependencies to 2.2 for all JDKs

This commit is contained in:
Lukas Eder 2019-10-17 17:37:01 +02:00
parent c7de396031
commit 993293ed56
2 changed files with 7 additions and 2 deletions

View File

@ -62,7 +62,7 @@
<annotationProcessorPath>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.12</version>
<version>2.3.1</version>
</annotationProcessorPath>
</annotationProcessorPaths>
</configuration>
@ -71,7 +71,7 @@
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.2.12</version>
<version>2.3.1</version>
</dependency>
</dependencies>
</plugin>

View File

@ -82,7 +82,12 @@ public enum SQLDialect {
/**
* The CUBRID dialect family.
*
* @deprecated - [#9403] - 3.13.0 - This dialect is hardly used by anyone
* with jOOQ or without jOOQ and will be removed in the near
* future.
*/
@Deprecated
CUBRID("CUBRID", false, true),
/**