I'm evaluating Maven 3 at work. For several example projects I have to deploy them to a server (no repository), but that's not the problem.

In my current example-project I'm trying to upload only the "jar-with-dependencies". and exactly that's my problem.

It all works fine, except that the main-artifact AND the jar-with-dependencies (created by the assembly-plugin) are uploaded.

How do I prevent Maven or rather the deploy-phase from uploading the main-jar and only upload a given or specified file (in this case, the assembly-file "jar-with-dependencies")?

Referring to the question Only create executable jar-with-dependencies in Maven, I can't just alter the packaging-setting to pom, because it will also prevent the assembly-plugin from adding my classes to the JAR file. It only creates a JAR file with the files of the dependencies.

I hope I'm clear about my problem, and you can help me ;)

link|improve this question

43% accept rate
If you are trying to upload only "jar-with-dependencies" it sounds like you didn't understand the concept of Maven. Cause a build will result in an artifact which is a jar (or war, ear etc.) and not with it's dependencies which is not achievable with the Maven-assembly-plugin. The question is what you like to achieve? – khmarbaise Apr 19 '11 at 7:24
Well, my goal is to get to know how I can specify which file Maven should deploy and which not. I'm familiar with the concept of Maven and the jar-with-dependencies was just a result of learning how to use Maven and common plugins. With the basis of these 2 jars I wanted to learn how to deploy specific files. To prevent misunderstandings you can call them first-jar and second-jar within the same project. I hope you understand what I'm trying to say ^^ – Zobbl Apr 19 '11 at 8:47
feedback

1 Answer

if you just looking how to add a file to be deployed you can take a look here:

http://mojo.codehaus.org/build-helper-maven-plugin/attach-artifact-mojo.html

May be this helps. If not express your needs more in detail.

link|improve this answer
It helps a bit, but only for future projects ;) I want to configure the deploy-plugin (or something else, if there is sth. else) to upload a jar that i specify - overwriting the standard configuration of the plugin. I want to tell maven "upload this jar, and not this one" ... something like that. Right now, I don't know how to be more specific ^^ and I hope you understand my thoughts – Zobbl Apr 19 '11 at 10:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.