Tagged Questions
4
votes
1answer
34 views
How to specify path for local jars in maven
I am using maven2 to build the java project. when I am trying to build using mvn install I am getting the compilation error saying some package xya.abc.aaa doesnot exist. This package is available ...
4
votes
3answers
1k views
Only create executable jar-with-dependencies in Maven
In my pom.xml I use the maven-assembly-plugin to create an executable jar-with-dependencies when running "mvn clean install".
Now it first creates the non-executable "name-version.jar" and after that ...
4
votes
4answers
529 views
How to list dependencies of a JAR
is there a tool that can list third party "packages" that contain (third party) classes referenced in the JAR ? Let say that it would recognize what is "home" package from JAR file definition and it ...
4
votes
3answers
101 views
Managing JAR dependencies in a solo development environment
Should I use something like maven for this? Or would finding them as they occur be better? I am not supporting any users other than myself.
3
votes
1answer
59 views
Compiling a maven project with class from external jar file (that is not in a maven artifact)
I'm somewhat new to java, and very new to maven. I might use some terminology imperfectly.
As I develop my project that I'm using use maven to build, as I've needed classes that aren't part of the ...
3
votes
1answer
248 views
SLF4J NoSuchMethodError on LocationAwareLogger
This is a question that has been asked before, but unfortunately no solution seems to work for me. I am facing this exception (with abridged stack trace):
java.lang.NoSuchMethodError: ...
3
votes
1answer
32 views
Maven puts JAR-file into package, that is not diplayed when running mvn dependency:list/tree -Dverbose=true
We have an issue where hibernate-validator-3.0.0.ga.jar gets put into a warfile and due to a known incompatibility with a different hibernate-core version causes exceptions.
The problem is, that ...
3
votes
1answer
186 views
wget not working to download jar file from maven repo
I'm trying to download a single jar file from the maven repository, from the URL below.
http://repo1.maven.org/maven2/com/google/guava/guava-testlib/10.0/guava-testlib-10.0.jar
Downloading in a ...
3
votes
2answers
133 views
Maven compile a source jar dependency
Let's say I have a project that uses a dependency that can be found in the Maven repository. However, lets also say that the jar file that will be downloaded is NOT in a format that is suitable for my ...
3
votes
1answer
68 views
Maven: how to identify jar files by SHA
I've inherited an Ant-based project that has over 80MB of jar files in a lib dir. I'd like to convert it to Maven. The jar files are named very simply, like quartz.jar. Since there is no indication of ...
3
votes
2answers
2k views
“Ignoring InnerClasses attribute” warning is killing Eclipse
I have a couple of imported jars that have this error in Eclipse when the project builds:
[2011-04-08 16:31:48 - MokbeeAndroid] Dx warning: Ignoring InnerClasses attribute for an anonymous inner ...
3
votes
2answers
744 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
2answers
378 views
Including scala-library.jar in Maven generated package
I'd like to use Maven to include all the dependencies needed to run any Scala programs I write. I imagine this would mean at least scala-library.jar as well as any libraries I may use.
I don't mind ...
3
votes
1answer
216 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
1answer
52 views
Maven: Conflict jar dependencies
I have a project with two versions of the same jar (they implement similar classes and other specific classes). One jar is used for the java source files in one folder, and the other one is for other ...
2
votes
4answers
154 views
Selectively include dependencies in JAR
I have a library that I wrote in Scala that uses Bouncy Castle and has a whole bunch of dependencies. When I roll a jar, I can either roll a "fat" jar that has all the dependencies (including scala), ...
2
votes
2answers
93 views
How do I create a standalone jar from a maven project?
I am trying to create a standalone jar file I don't think that maven package is properly packaging my dependencies into the package. Is there a way to force it to include them?
2
votes
1answer
235 views
Difference between maven scope compile and provided for JAR packaging
Maybe this question seems to be a cliché but it bothers me somehow. What it difference in using maven scope compile and provided when artifact is builded as a JAR? If it was WAR, then I understand - ...
2
votes
1answer
184 views
Publishing a generated JAR file to Maven using SBT
I have an SBT Project that creates a JAR file using some external tool (all working fine), i.e. it's not compiling source code. I have the Maven Repo correctly configured with correct Credentials but ...
2
votes
1answer
167 views
Maven: Prevent upload of default-jar - only upload jar-with-dependencies
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 ...
2
votes
1answer
60 views
How can I include a folder in the jar produced by Maven (not the content of the folder, the actual folder)
I'm having some difficulty including a directory into the jar maven is creating. I need the actual directory in the jar, not just the files in it.
By using:
<resources>
<resource>
...
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
3answers
341 views
How to run a maven-packaged clojure application from the jar
I have the following contents in src/main/clojure/za/co/pb/maven_test/test.clj file:
(ns za.co.pb.maven-test.test
(:gen-class))
(defn -main []
(println "Hello world!"))
I also have a POM that ...
2
votes
1answer
151 views
What is the problem when javac compiler creates a jarfile with lowercase class file names?
When I run the javac compiler it compiles code and creates a JAR file, but the names of the class files inside the JAR are all in lower case. However, the classes within the source files have both ...
2
votes
2answers
825 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
0answers
30 views
Hibernate Mappings cannot be found, only when running from a JAR
I have project where in my src/main/resources I have two mapping files.
Foo.hbm.xml, Bar.hbm.xml
When running my main class from eclipse, all works fine. When exporting to jar file using maven ...
1
vote
1answer
41 views
How do I package a web fragment in a jar with Netbeans and Maven
When selecting a new maven project from the Netbeans New Project Menu, there is the option to create a Web Application, or a Standalone Application. I'd like to create a Class Library for use with a ...
1
vote
2answers
46 views
How to have tomcat use folder with extension .jar as jar files?
I have in Eclipse web application project that depends from other projects.
When I run debug on embedded Tomcat in lib folder that Eclipse copied not jars, but folders with names like:
...
1
vote
1answer
39 views
mvn eclipse:eclipse not adding SNAPSHOT JAR to classpath
I recently decided to try to use my Maven project as a dependency of another project. I built the project and it installed to my local repository:
I then set up the other Maven project to use this ...
1
vote
0answers
44 views
configure Maven Shade minimizeJar to include class files
I am trying to minimize the UberJar's size by using Maven Shade Plugin's minimizeJar. It looks like minimizeJar only includes classes that are statically imported in the code (I suspect this because ...
1
vote
1answer
88 views
Packaging composite component in JSF2 with Netbeans 7.0.1, Maven
I've read a lot of things on the Internet about packaging JSF2 composite component in a JAR file.
Does somebody know where I can find what MUST be the structure of JAR (specs, official doc, etc, ). ...
1
vote
1answer
69 views
How to fix m2eclipse plugin?
I have java maven project in Eclipse that depends from other projects and for near 1000 library jar.
But I cannot use m2eclipse at all.
For create Eclipse project is use eclipse maven plugin like:
...
1
vote
1answer
102 views
how to expose WEB-INF/lib inside war using maven
We are using an 3rd party war in our web app (war). In order to communicate with the war, we have created a bridge module (jar). The intention is to prevent our web app from directly communicating ...
1
vote
1answer
55 views
Sorting Dependency Automatically
I have an external library (say A.jar) which has loads and loads of stuff that I don't want, and a few that I want. The problem is, from my source Files (That I have written using that library, ...
1
vote
0answers
33 views
maven-gae-plugin, how to package my classes as a JAR?
Apparently its much more efficient to package your own classes and resources as a JAR inside the AppEngine WAR file generateed by the maven-gae-plugin.
How do I do this? I tried setting ...
1
vote
1answer
33 views
Maven - use old jars from SVN
I am migrating J2ee project to Maven,
I was able to resolve 99% of its dependencies except 2 old jar files we wrote few years
ago,
Is it possible to drop these jars somewhere (SVN repo?)
And tell the ...
1
vote
3answers
163 views
sbt: How can I publish a jar to my local repository?
I have a library compiled to a jar (not an sbt project, no source code, just the jar file) that's not available on a repository.
Is there a simple way to publish the jar locally so I can add the ...
1
vote
1answer
37 views
Setting up a maven project for already made jars
I have some jar files that I need to include in my build - I'd rather not specify them as system dependencies - that creates a nightmare for setup. I have been uploading them to artifactory and then ...
1
vote
1answer
60 views
Recommended practices for distributing/using maven projects outside the build lifecycle
There are many occasions where I am not sure whats the best to handle dependencies for a maven project. That is while executing a jar thats the result of mvn package.
Things I have tried
1) ...
1
vote
3answers
64 views
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
1answer
451 views
How to exclude dependencies from maven assembly plugin : jar-with-dependencies?
Maven's assembly plugin enables the creation of a big jar including all dependencies with descriptorRef jar-with-dependencies.
How can one exclude some of these dependencies? It seems like it does ...
1
vote
2answers
141 views
Created Simpl JAR file, imported to Maven project but Maven install is complainining “package does not exist”
I guess I haven't really had to do this much before because I am running into a strange issue. I am trying to generate a JAR from an existing Java project and then and putting it into a Spring Maven ...
1
vote
1answer
427 views
maven unable to download jar files from repositories, doesn't recognize already present jar files
I'm new to Maven and m2eclipse, and have been trying to run the main pom.xml file as a maven install for the first time, but it's just not working right. It tries to download some jar files (from both ...
1
vote
2answers
103 views
Running tests after packaging
One of my projects needs a pretty complex setup for the resulting JAR file, so I'd like to run a test after the package phase to make sure the JAR contains what it should.
How do I do that with Maven ...
1
vote
1answer
172 views
Why does my program work in eclipse, but generates a “filename, directory name, or volume label syntax is incorrect” error when jarred with maven?
I have a class (called LogCopy) I've written which when I run it in Eclipse with the 4 parameters it's supposed to have, in the correct format, surprise, surprise, runs perfectly fine. The trouble is, ...
1
vote
1answer
162 views
Why doesn't my maven build get the jar from my repository?
I'm trying to set up Maven repository for some jar files from vendors and from classes I wrote.
It's working for the oracle jar files I put in, but not for my own jar.
I set up an apache webserver ...
1
vote
4answers
173 views
“Just get me the jar” command?
Is there a utility that will take a package name (or glob!), and go find the jar file? Or find the URL of the jar file so I can wget it?
What I want to do is something like:
getmethejar joda-time
...
1
vote
2answers
193 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
79 views
Handling server JAR in maven
There are some server jars in my project which i want to migrate to maven ..
I don't have any idea how can i have dependencies attached to these jars.. there are almost 24 jars.. So how can add ...