Cédric Champeau
Cédric Champeau
I am not sure this has a lot of interest. The build plugins are not a project generator, they simply provide a plugin for integrating with Gradle or Maven. I...
Let's check our options. 1. Generating CLI apps where I don't expect people to be willing to rely on a framework Given that for CLI apps you are likely to...
> In any case, I think at least part of these changes should be merged into the plugin. I am not convinced they should. Gradle properly isolates annotation processor dependencies...
Still needs a release
Do you have an example of such a library? Because by default we _do_ use the minimal set of libraries.
I think that your IDE misleads you :) The BOM is only constraints. The constraints are never used UNLESS you have a dependency on one of the components that it...
In general this isn't such a good idea. Arguments passed by command line are by nature undocumented, opaque. Imagine build reproducibility: everything should be found in the build files, or...
#683 was for Gradle, I'm not sure about Maven, however "standard" maven property overrides should work
I haven't tested it, but you can probably do this by making sure that the `testcontainers.properties` file is found on the test resources classpath (NOT the test classpath). See https://micronaut-projects.github.io/micronaut-gradle-plugin/latest/#_configuring_the_test_resources_plugin
Conditional mode is actually the default for _libraries_, that is to say when you use the `java-library` plugin, not the `application` plugin. @dnestoro do you think we should change the...