Cédric Champeau
Cédric Champeau
While I think about it, something to consider when we move modules out of core. Ideally they should also get their own `groupId` when publishing on Maven Central. However, changing...
In case `inject-java` is renamed, the Gradle (and probably Maven) plugins will have to be adapted (as well as the Micronaut Build tools) as there are several occurrences there.
If you add `protected` then you're creating a _field_, and no accessors anymore. If you remove the modifier like in the bug report, then you're creating 3 things: - a...
I am facing the same issue with GraalVM 22.3 (17.0.5+8-jvmci-22.3-b08): https://scans.gradle.com/s/pp4d2ulbe7gdi/console-log?page=1#L73
I guess there's no workaround?
It is using awt, I was building this [demo project](https://github.com/stepstone-tech/doom-graalvm/blob/main/src/main/java/com/stepstone/jc/demo/GameWindow.java).
I am just trying to make the Micronaut build compatible with the configuration cache and Spotless compatibility is the last missing piece. I had to disable the cache with the...
This is a side effect of enabling the metadata repository by default, and a consequence of [this Gradle bug](https://github.com/gradle/gradle/issues/17559). You can workaround by disabling the metadata repository if you don't...
I don't understand this change, can you give more context? The plugin shouldn't be applied to the root project, even with `apply(false)`. Worst case it should be on the plugin...
mmm, right, I see why we'd like to do this, I don't think this is the right solution. We shouldn't start reintroducing specific changes to the root build for this,...