Hi,
Since rebasing my repository to version 25.0.6 a few days ago I have been unable to start Quarkus in development mode. When I run
./mvnw -o -f quarkus/server/pom.xml compile quarkus:dev -Dquarkus.args="start-dev"
I get:
2024-10-07 23:46:40,489 WARN [io.quarkus.deployment.steps.RegisterForReflectionBuildStep] (build-15) Failed to load Class oracle.jdbc.xa.OracleXADataSource: java.lang.ClassNotFoundException: oracle.jdbc.xa.OracleXADataSource
2024-10-07 23:46:40,493 WARN [io.quarkus.deployment.steps.RegisterForReflectionBuildStep] (build-15) Failed to load Class oracle.jdbc.datasource.impl.OracleDataSource: java.lang.ClassNotFoundException: oracle.jdbc.datasource.impl.OracleDataSource
2024-10-07 23:46:46,949 WARN [io.quarkus.deployment.steps.ClassTransformingBuildStep] (build-58) Could not remove configured resources from the following artifacts as they were not found in the model: {com.oracle.database.jdbc:ojdbc11::jar=[oracle/nativeimage/CharacterSetFeature.class]}
ERROR: Unexpected error when starting the server in (development) mode
ERROR: Failed to start quarkus
ERROR: oracle/sql/CharacterSet
I have followed the instructions at
https://github.com/keycloak/keycloak/blob/main/docs/building.mdWhen I run java -jar quarkus/server/target/lib/quarkus-run.jar start-dev I get ERROR: Unexpected error when starting the server in (development) mode
ERROR: Failed to start quarkus
ERROR: oracle/sql/CharacterSet
ERROR: oracle.sql.CharacterSet
java -version returns
openjdk version "23" 2024-09-17
OpenJDK Runtime Environment (build 23+37-2369)
OpenJDK 64-Bit Server VM (build 23+37-2369, mixed mode, sharing)
I assume it is something simple that I am missing, any help would be appreciated.
Thanks,
Nicholas