-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Update to Quartz 2.5.0 and drop Jakarta transformation workaround #44477
Conversation
/cc @melloware thanks for being pushy about this! |
🎊 PR Preview 7fa4088 has been successfully built and deployed to https://quarkus-pr-main-44477-preview.surge.sh/version/main/guides/
|
This comment has been minimized.
This comment has been minimized.
in extension/quartz/runtime/pom.xml. There are exculsiosn on quartz that I do not think are needed anymore; HikariCP and c3p0 are now provided dependencies instead of compile dependencies. Also I am guessing HikariCP-java7 is not there anymore (did not check) <dependency>
<groupId>org.quartz-scheduler</groupId>
<artifactId>quartz</artifactId>
<exclusions>
<exclusion>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
</exclusion>
<exclusion>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP-java7</artifactId>
</exclusion>
<exclusion>
<groupId>com.mchange</groupId>
<artifactId>c3p0</artifactId>
</exclusion>
</exclusions>
</dependency> |
Ah good catch, let me have a look. |
Status for workflow
|
Status for workflow
|
Damn, that feels good to finally be able to get rid of the transformation workaround!