Graeme Rocher
Graeme Rocher
Micronaut Launch requires the following changes for Micronaut 4.0: - [ ] Default to Properties files instead of YAML and add YAML feature - [ ] Switch to Micronaut Serialization...
See https://github.com/casid/jte/blob/main/DOCUMENTATION.md#graalvm-native-image-support-since-1100
Some features like `github-workflow-oracle-cloud-functions-graalvm` use the deprecated/unmaintained DeLaGuardo/[email protected] we should alter these to use the official Github action for GraalVM
Current config generated is: ```yaml micronaut: application: name: mongoTest mongodb.uri: mongodb://${MONGO_HOST:localhost}:${MONGO_PORT:27017}/mydb netty: default: allocator: max-order: 3 ``` This is not compatible with test resources. I had to comment out the...
Current configuration is not compatible with test resources: ```yaml r2dbc: datasources: default: schema-generate: CREATE_DROP dialect: H2 url: r2dbc:h2:mem:///testdb;DB_CLOSE_ON_EXIT=FALSE username: sa password: '' ```
We should baseline the sample on Java 17
### Feature description For each release we should send a PR to https://github.com/oracle/graalvm-reachability-metadata/blob/master/library-and-framework-list.json with a list of modules that are tested with and known to work with native image and...
### Expected Behavior A startup / runtime issue should occur with classes missing from a bean definition constructor or any of the injection points. This is because we merged references...
Currently `provided` scope dependencies are not included in the native image build for JUnit 5 tests. This is inconsistent with the way `mvn test` works. **To Reproduce** Add a provided...
### Feature description Currently running `mvn mn:start-testresources-service` exits and the service is left running as a background process. What I want is for this to behave like `mvn mn:run` where...