-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
JOOQ got build error with Quarkus framework when build with native image #64
Comments
I also asked a related question in jooq, jOOQ/jOOQ#13550 |
In that issue, I suggested you try working with the Have you changed your setup to use |
The problem is using EE 10 dependencies: You should stick to the dependencies brought by the |
@lukaseder I'm missing some of the information, I've used the relevant dependencies and these errors are generated on top of that
|
I didn't add |
The relevant dependency information is as follows
|
@lukaseder @gsmet |
@renyijiu the problem is that you are using libraries that are not compatible. You cannot use JOOQ 3.16.x yet, and will have to wait for Quarkus 2.10.0 to be able to combine the two. Any fix for the incompatibility is outside the scope of this project for which you are reporting an issue. Basically, you have done something that won't work, and want their help fixing it. Instead, use JOOQ 3.15.5 and don't upgrade it until later. Note the An alternative is also to not use native images until these libraries are all compatible again or you figure out how to hack in dependencies. |
Thanks for your answer, it works well on graalvm version 22.0.0.2, I will keep this version for now and wait for the new release to test and verify again |
@renyijiu Is there any news on this issue? Faced the same error |
graalvm 22.3, quarkus 2.14.1 still build with same error |
Your question:
I have built a project with Quarkus framework and JOOQ library for database connection that runs with GraalVM native-image. When I compile natively, I get some jooq-related error messages, and I can't be sure if the missing dependencies are the cause. Run
./gradlew clean build -Dquarkus.package.type=native
and the error message is as follows:Versions:
Not effective solution
Add the
dependencies in the project, and it seems nothing changed, still get errors.Is there something I'm missing? Thanks.
When i test with GraalVM CE 22.0.0.2, it successful create the native execute file.
The text was updated successfully, but these errors were encountered: