quarkusio / quarkus-buildpacks

9 stars 3 forks source link

Support multimaven modules #17

Open jtama opened 1 year ago

jtama commented 1 year ago

As of now this buildpack detects the presence of quarkus in the root pom of the project. But there are absolutely no warranty that it will be there.

Our project looks like this :

|-- pom.xml
|-- common
|    |-- pom.xml
|-- module1
|    |-- pom.xml
|-- module2
|    |-- pom.xml

The quarkus dependencie lies in the modules. I can build only on projet with mvan using -pl module1 -am options, but even specifying those argument will not work here.

Is there anything that could be done ?