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
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 ...
4
votes
3answers
2k 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
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
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 ...
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
34 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
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
2answers
153 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
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()); ...
3
votes
2answers
402 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
232 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
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
1answer
70 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
167 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
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
287 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
199 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
180 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
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
2answers
167 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
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 ...
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
848 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
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
1answer
22 views

Creating Runnable Jar

I have two mavenized projects my_project1 and my_project2 in the same folder. Both of them have their own POM file. One project is dependent upon other. Now I would like to create a runnable jar and ...
1
vote
3answers
55 views

Maven and ibiblio

I searched a lot in apache documentation and ibiblio.org and I could not find a decent straight answer. My questions: When I download a jar using maven dependency (setup in pom), how can I be sure ...
1
vote
3answers
39 views

Beginner query about Maven dependency and external Libraries

Should I have to add external jar files even I have to use Maven dependencies. I am really new to maven and really cant understand what its actually use for. Please guide me understanding maven.Thank ...
1
vote
1answer
27 views

how to create the cassandra-jar from the cassandra source code?

I have made some changes to the Cassandra source code and I want to include these changes into the Hadoop cluster.For that I want to create jars from this updated source code. Can I have the steps ...
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
1answer
71 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
71 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
142 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
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
124 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
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
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
221 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
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
66 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
71 views

How to simply download a JAR using Maven?

How do I download JAR during a build in Maven script?
1
vote
2answers
125 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
531 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 2 3