-
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
Quarkus CLI should look in parent directories to find maven and gradle wrappers #11516
Comments
/cc @quarkusio/devtools, @glefloch |
@patriot1burke btw I am adding those options to codestarts: public CreateProject noExamples() {
return noExamples(true);
}
public CreateProject noBuildToolWrapper(boolean value) {
setValue(NO_BUILDTOOL_WRAPPER, value);
return this;
}
public CreateProject noBuildToolWrapper() {
return noBuildToolWrapper(true);
}
public CreateProject noDockerfiles(boolean value) {
setValue(NO_DOCKERFILES, value);
return this;
} |
+1 on searching in parents for project and wrappers. look at https://github.com/dansomething/mdub and gdub on how this search and exec for wrappers is done best without "surprises" |
@maxandersen @ia3andy do you mind if I work on this, or has anybody started? |
@ebullient is rewamping the cli but would be interesting to have this. So +1 for me |
Code looking for wrappers has been consolidated.. so this should be easier .. go for it |
Description
In multi-module project you don't want to have the wrappers everywhere, right? at least I don't :), but also you want your command to work in sub-modules.
It would be nice if the new Quarkus CLI would look in parent folders to find
mvnw
orgradlew
(and their windows equivalent) :)The text was updated successfully, but these errors were encountered: