I am following link: https://sivalabs.in/2016/03/springboot-working-with-jooq/ and using Java8
and Spring Boot 2.2.2.RELEASE
.
I followed li
You are showing Maven pom.xml and mentioned getting error with gradle-jooq-plugin.
If you are using Maven then the class org.jooq.util.jaxb.tools.XMLAppendable is there in org.jooq:jooq:3.12.3 which is already added to classpath by adding spring-boot-starter-jooq.
I made the following modifications and code generation worked fine:
Please add this depdendency.
<dependency>
<groupId>org.jooq</groupId>
<artifactId>jooq</artifactId>
<version>3.12.3</version>
</dependency>
Note :: Please give the version as per other jooq dependencies