Tagged Questions
4
votes
1answer
36 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
4answers
600 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
102 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
79 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
461 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
216 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
1answer
69 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
4answers
2k views
Executable jar won't find the properties files
I use this code in my program to load a properties file:
Properties properties = new Properties();
URL url = new App().getClass().getResource(PROPERTIES_FILE);
properties.load(url.openStream());
...
2
votes
2answers
66 views
How to deploy the sources file with the jar using Maven deploy:deploy-file
I have the following plugins for creating a -sources.jar and deploying a specific named jar to a repository.
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
2
votes
2answers
110 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
62 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
3answers
356 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 ...
1
vote
3answers
44 views
What is the best jar organization strategy?
If we are building a large library of java classes, what determines when it is best to split them into separate jar files?
My understanding is that having one large jar file should not significantly ...
1
vote
0answers
37 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
0answers
33 views
javadoc: make javadoc.jar take priority over javadoc in sources.jar?
I have a limited selection of original source code overlayed onto decompiled code in a sources jar.
This is great as it gives me easy ability to drill down into the code when debugging however it ...
1
vote
1answer
57 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
50 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
0answers
70 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
73 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
63 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
38 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
39 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
530 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
146 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
194 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
175 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
177 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
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
4answers
121 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
3answers
176 views
Maven beginner questions - though somewhat a complex project setup
So I would classify myself as a senior developer with little java experience. I am working on a little pet project that is basically a desktop app with and sdk for plugins, and a set of plugins that ...
1
vote
1answer
397 views
Add file to jar during maven build
I have an xslt that I want to add to my jar file when I do the maven build. I read int he documentation you can add stuff in the resources folder, and it will get picked up, but what if I want it to ...
0
votes
1answer
22 views
Jar configurations and their contents
While downloading Google Guice I noticed two main "types" of artifacts available on their downloads page:
guice-3.0.zip; and
guice-3.0-src.zip
Upon downloading them both and inspecting their ...
0
votes
0answers
36 views
NetBeans misses classes in Maven shaded JAR; errors in editor but compiles fine
I have added a reference to a jar in NetBeans that is the result of a Maven compile which uses the shade plugin to combine library references and the build results into one large JAR file. In the ...
0
votes
0answers
31 views
Netbeans Java Single Project Architecture and How-To Advice war + jar
I'm new to Netbeans (getting started with 7.1) and would like some architectural advice and potentially how-to advice from any experienced users.
Our application is comprised essentially of two ...
0
votes
1answer
76 views
How do I create a JAR with m2e (m2eclipse)?
I'm new to Maven and m2e. It frustrates me that I have to ask this question, but the sparse m2e documentation and Google are failing me.
How do get m2e to build a JAR? I understand that this should ...
0
votes
2answers
55 views
How to build a runnable jar with internal jar files that have internal jar files?
I have a huge project (Application) with another project inside it (Core). Application has a big set of libraries inside as does Core. I'm using Eclipse and so I'm using the Export Runnable Jar ...
0
votes
1answer
32 views
ImplementedVersion is not accessible in exec:java target
I have used this how2 to add the Version number to our produkt: http://www.christophkiehl.com/easy-way-to-display-your-apps-version-using-maven-and-manifest
when i now build a jar with mvn ...
0
votes
1answer
49 views
creating jar file of maven projects with netbeans
I am using netbeans to work on a project. I am using svn, so that I can commit to newer versions and revert to an older version in case I mess up. Now I want to create a jar file of this project but ...
0
votes
1answer
61 views
How to load TestNG config within an executable JAR?
I have an shaded executable jar created by a Maven build. Within I have a main class that executes and attempts to run a collection of TestNG tests. It runs until it it attempts to load the xml ...
0
votes
1answer
83 views
Maven assembly: include JDBC
I'm trying to build a single .jar file from a Maven project which includes every necessary dependency. Therefore the .jar should run on a computer with missing libraries.
The in my pom.xml:
...
0
votes
2answers
53 views
Can not find load class in the lib folder of jar
I package all my dependency jars in the lib folder of my final jar. But when I use command to execute like java -cp my.jar MyMainClass, it said that can not load the class in the lib folder, what's ...
0
votes
2answers
314 views
executing jar file: Caused by: java.lang.ClassNotFoundException: org.springframework.context.ApplicationContext
i have created a maven project..after i type: mvn clean package everything works fine and i see my jar file inside target. But if i click the file i get the follwing error message:
Exception in ...
0
votes
4answers
114 views
Maven: How to include jars in Eclipse , which are not available in repository?
I have copied the JARs into src\main\webapp\WEB-INF\lib.
I use eclipse . It cannot setting by add jars one-by-one to
Project->Java Build Path -> add jars.
If do that, then Project-> Maven -> Update ...
0
votes
3answers
134 views
How to embed rt.jar into my WAR using maven
How can I embed one of the JRE libraries (say, rt.jar) into my WAR using Maven?
Is there a maven plugin/command to do so?
0
votes
1answer
92 views
Maven Jar signing and target rearrangement
I'm converting an Ant based project to be buildable by Maven. Standard build is working for now. I'm trying to migrate the additional build targets which are specified in the original Ant build ...
0
votes
3answers
78 views
java -jar jarname does not unzip all resource files
I am creating an executable jar with maven and have added the following to my pom.xml under build section
<build>
.....
<resources>
<resource>
...
0
votes
4answers
181 views
How can I use Maven to automatically download any needed dependencies of my program?
I am new to using Maven.
I have Java files that have dependencies.
Like for example:
import org.apache.hadoop.fs.Path;
import org.apache.hadoop.hbase.HBaseConfiguration;
import ...
0
votes
0answers
52 views
Building a NetBeans app with Maven
I have a simple Java console application that I have built in NetBeans. It runs fine within NetBeans, but I want to export it into a jar so I can run it on other machines.
I have been trying to ...
0
votes
1answer
186 views
Maven Eclipse add-on missing .jar files
I just installed Maven for a project in Eclipse.
Now Maven is complaining that the libraries are missing for it:
How do I fix this problem?
0
votes
4answers
305 views
How do I get Maven war plugin copying full jar in /lib of my web application?
I have a web-app configured with a pom.xml.
This web-app relies on another maven module that produce a jar file. When i check the produced jar file size it is 8Ko. When i check this same jar file in ...