Replies: 1 comment
-
|
/cc @quarkusio/devtools (maven) |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello.
I changed the packaging type from jar to quarkus on our microservices and everything was ok.
And today I tried to do the same for our native image based console applications. But their Jenkins pipelines started to fail.
The reason is that the new
quarkuspackaging's lifecycle doesn't containsmaven-install-pluginnormaven-deploy-pluginsgoals associated to it.So, doing a "mvn deploy" doesn't calls deploy:deploy...
I tried to attach the maven-deploy-plugin in the project's pom, but it fails because this plugin needs to have something which is produced by the maven jar or install plugin and added to the build context, so it didn't work.
I also noted that
build-helper-maven-plugin, which is used to attach the generated native image to the project's artifacts, also didn't work.So, for now I've rollback the changes.
Anyone have experience this kind of issues and fixed ?
Beta Was this translation helpful? Give feedback.
All reactions