Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
819 views

disable the execution: default-jar

i am using maven assembly plugin to pack a jar file. But when i run mvn package, maven always trigger the [jar:jar {execution: default-jar}] to create a default jar file. So i will have 2 jar files ...
2
votes
1answer
3k views

Change maven dependency for artifact using classifier

With the maven jar plugin I build two jar: bar-1.0.0.jar and bar-1.0.0-client.jar. Actually in my POM I have the following dependency: <dependency> ...
1
vote
2answers
200 views

How can I add a file to a classpath but not to a jar with maven?

I want to add some configs to the classpath (generated by maven-jar-plugin), but I don't want them inside a jar, but in an external folder. That way I'll be able to edit configs without repackaging. ...
1
vote
2answers
1k views

are there any examples of how to use maven-jar-plugin?

I am very new to Maven and would like to see an example of how one uses the maven jar plugin. I already visited here but did not find any examples. On the documentation page, there were some ...
0
votes
3answers
40 views

multi artifact id in one pom

There is a maven project(jar), but now it needs to be spilt into two artifacts I want to have two maven artifact like following <groupId>xxx</groupId> ...
0
votes
1answer
41 views

How do I build only one JAR file with classifier?

I'm using Maven 2 and maven-jar-plugin to build my jar. I'd like to generate only a jar with a classifier. Is it possible? In my example I'd like to generate only the myjar-another-1.0.jar but not ...
0
votes
2answers
142 views

maven create zip with jar and some more files

I do not understand maven. Better use ant, but... I've managed to create jar (with, or without dependencies), I've managed to copy bat runner script close to jar but now i want to create zip with this ...
0
votes
1answer
76 views

Different MANIFEST.MF for default jar-file and tests.jar

I'm trying to create different MANIFEST.MF files for the jar-packaged artifacts and the test-jar-packaged. The maven-jar-plugin being used to add additional stuff into the MANIFEST.MF - that works ...
0
votes
0answers
171 views

maven jar-plugin : why does not recognize classesDirectory?

mvn 3.0.2 my pom.xml has following definitions: ... build/plugins/plugin/maven-jar-plugin execution=id1/configuration/ classesDirectory=target/classesw ...
0
votes
0answers
113 views

Maven cannot compile using test dependency in multiple modules

I have multiple modules in my Maven build. Basically Module2 depends on Module1 and its test jar as well. Module3 depends on Module1, Module 2, and Module2s test jar. Everything compiles and works ...