The Maven jdeb plugin (for building debian packages) recommends you set it
up like:
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>jdeb</goal>
</goals>
… but this means that if I do an
mvn install
that packages are built and installed into the maven repo.
1. this doesn’t make a ton of sense. No one is going to install our .debs
from a maven repo.
2. it significantly slows down the build. I imagine our build could be
from 30-200% faster if I could remove this. It’s slowing down our
continuous integration system.
What I’d like to do is run it like
mvn jdeb:jdeb
… but it doesn’t seem to have any goals associated.
Any thoughts?
--
Founder/CEO Spinn3r.com
Location: *San Francisco, CA*
blog: http://burtonator.wordpress.com
… or check out my Google+ profile
<https://plus.google.com/102718274791889610666/posts>