Tagged Questions
3
votes
2answers
747 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 ...
3
votes
1answer
219 views
Maven problem with invalid jar file which is actually html
i'm running into a problem in my maven build recently, that it downloads a jar file for the javamail-1.4.jar or something, but it turns out the file is not a real jar file, it's actually a html with a ...
2
votes
2answers
164 views
Maven package open a file (as a *File*) inside a jar package
I need to open a file which is inside a maven jar package. It a model configuration for a framework I use and a constructor of a library class requires to pass a object of type File. I can get a path ...
2
votes
2answers
826 views
Publishing artifacts with sources on archiva
At work I'm dipping my toes in managing project dependencies with maven. We use Apache Archiva (1.2.1) as a local repository and proxy. I'm adding artifact for open source project, that is not ...
1
vote
2answers
97 views
New at Maven: Using the shade plugin and 3rd party jars
This should be pretty simple, but I can't the around to it. I need to create an uberjar using 3rd party jars. I've already followed these instructions: Including a non-Mavenized dependency so it works ...
1
vote
4answers
119 views
Dependency for WebProject in maven
i want to create a web project(war)..which will depend on other jar(java project)
Once i build my war it should automatically build the java project to jar and add it to its local repository.
Can ...
1
vote
4answers
2k views
Using Maven ant task to install jar to local repository
At the end of my ant build id like it to call the equivalent of the command line call
mvn install:install-file -Dfile=my.jar -DgroupId=com.company.project -DartifactId=my_project -Dversion=1.0 ...
0
votes
2answers
490 views
How do I rebuild hibernate3.jar from the 3.5.2 distribution?
I made some changes to the hibernate source and need to rebuild hibernate3.jar. I tried "mvn deploy" but I get a 401 (trying to upload to the jboss repository, which I don't want to do). I followed ...
0
votes
3answers
536 views
upload jar to respository
I have a jar files that cannot be found on maven2 repository. i interested to add the jar so i can just include extra tag in my pom.xml file and other developer can use the jar. what is the steps ...