0
votes
1answer
15 views

Obfuscate dependencies to single jar with Proguard

I have modular maven application and "module1" depends on "module2" and "module2" depends on "module3" etc.. In module1 I have something like this: <profile> <id>obfuscate</id> ...
0
votes
1answer
13 views

maven checkout from cvs and install into repo

Does anyone know of a way to do this quickly? I have an old cvs repo /w a bunch of jars, tagged, etc. I'm looking to bring them over into maven. So basically checkout from cvs install into local ...
0
votes
1answer
33 views

GWT Runtime Dependencies

Please note, not interested in using the Google-Eclipse plugin; I want to manage all dependencies manually. Just downloaded the GWT 2.5.1 SDK and am looking at all the JARs it ships with: ...
2
votes
1answer
41 views

Maven - Add jar-with-dependencies as a dependecy

Question.. I'd like to add a dependency on a Maven jar packaged with it's dependencies. Details.. I have a multi-module Maven project in which one of the module depends on native libraries and the ...
0
votes
1answer
36 views

Maven filter src/main/resources of a JAR dependency

My maven top level project refers to a common-db project. In this project I have a spring file which defines the DB parameters. However, I want the top-level project to define the DB parameters ...
0
votes
1answer
19 views

Warning POM missing in the jar

I have created the jar through maven from some other project. The jar reside in the location repository. The jar contains the pom.xml file in META-INF/maven///pom.xml and pom.properties. I have also ...
1
vote
1answer
38 views

How to / where to find info on JBoss client dependencies? Any documentation?

It may be pretty basic question. But no luck Googling. I was going through this URL. Because I had an issue accessing EJBs deployed on JBoss. After following this, it worked. Mainly this line. ...
1
vote
1answer
50 views

How to make maven to take resources from /src/test/resources instead of /src/main/resources for a dependent project?

I've searched the forum to find the answer to my problem, but I was unable to find it. My problem is, that: I have two projects: ProjectA and ProjectB. ProjectB uses ProjectA. In ProjectA i have two ...
4
votes
1answer
102 views

CloudBees Runtime Classpath

I just read the CloudBees whitepaper "CloudBees Advantages: A Guide for Java Developers". In it there is a sentence that reads: The database is simply available as a JNDI resource as soon as it is ...
0
votes
1answer
21 views

Listing or bundling all needed dependencies of a Jar file. How?

I'm currently working with a .jar file that needs other .jar files to work correctly. The problem is that some of that jar dependencies will depend yet in other jar dependencies. The game goes on. ...
0
votes
1answer
56 views

How to create a jar with dependencies as main build artifact, later used by assembly plugin?

I've been working on a Java Maven project that ultimately creates an executable jar file. At first I had no issues, but then I decided I wanted the dependencies to be copied into the jar as well. I ...
0
votes
2answers
38 views

How to share configuration files across modules in Maven

I am working on a java maven project with several modules. I am facing issues with sharing configuration files from one module to its dependency. For instance i have a module named utils which holds ...
0
votes
0answers
121 views

Maven modify dependency jar manifest files

I'm sorry in advance I can't give the exact code as I don't have it at hand right now. However, I ran into a problem while trying to package my project into a jar. I used maven assembly plugin in my ...
1
vote
2answers
41 views

Issue creating and using a custom jar file

I have prepared some util classes. I planned to make them as jar and distribute it to required projects. My util classes uses some already existing custom code provided in the form of jar file. My ...
1
vote
0answers
44 views

Lock dependencies by secure checksum in Maven

When I distribute a source project with a POM I can define dependencies with version strings. The build will download those dependencies if they are not in the local repository, it will even verify ...
0
votes
1answer
29 views

install maven artefact with dependecies

I want to create a maven artifact from an existing jar. So far so good. The problem is that in said jars class-Path several other jars are referenced. Is there a way to also create artifacts from the ...
-2
votes
1answer
120 views

FileNotFoundException when running Maven generated jar

Trying to create my first ever executable jar and am using Maven to do so. The Java runs fine by itself but when I try and run the jar I get a FileNotFoundException for src\main\resources\sound.wav. ...
0
votes
1answer
236 views

Apache giraph process graph with a custom algorithm

I have a custom algorithm for processing a graph which accepts a txt file as input. Because it is a large scale graph I want to implement it in the apache giraph framework. I' ve done a lot of ...
1
vote
1answer
268 views

OSGI Bundle vs jar dependency

I'm trying to understand the difference between the following <dependency> <groupId>com.myspace.order</groupId> <artifactId>dal</artifactId> ...
2
votes
1answer
477 views

What is advantage of apklib from jar?

I was following this question but it doesn't answer my question completely. What is real advantage of apklib from jar? Possible answers: It contains resources But I can easily put resources to ...
0
votes
1answer
128 views

maven - exclude dependency only from jar

My project generates a jar and a dll (with ikvm). I need a dependency for the dll but I don't want it to be included in the jar, is it possible to do it ?
0
votes
1answer
112 views

How to remove Dom4j 1.6.1 jar from classpath and add the same jar depedency in MANIFEST.MF file?

I have my pom.xml <dependency> <groupId>jaxen</groupId> <artifactId>jaxen</artifactId> <exclusions> ...
0
votes
1answer
41 views

run with difference jar?

I am from .net world. I remember .net will immediately complain if you build with one dll but supply a different dll at run time. I am now adding some hadoop reference to my project and find the ...
0
votes
1answer
73 views

Remove conflicting dependencies when reinstalling with IzPack

I have a grails application and an installer for it. Everything is working with no problem. But, I recently updated the version of the HttpClient. The problem happens when a customer installs the new ...
1
vote
2answers
103 views

Dealing With Duplicate Fully Qualified Names

Like the title says, is there a way to deal with this? I have imported two separate third party libraries and they have a fully qualified class name conflict. Right now both libraries are being ...
0
votes
1answer
545 views

Maven: Including external JAR in POM

I know questions like this have been asked and answered before, and have taken the time to read those threads, but somehow they won't help me. I have locally added own Java code to the DSpace ...
1
vote
2answers
154 views

How can I use maven to include classes from a sibling module in a jar?

I have Maven project with a parent module and two children: Service and API. The Service module is a WAR and contains all of the source files for the project, while the API module exists purely to ...
2
votes
1answer
240 views

Finding jar dependencies for eclipse/jdt in Java

I'm trying to compile Eclipse JDT - Abstract Syntax Tree (AST) and the Java Model - Tutorial using command line. I came up with this command line based on the name match in plugins directory in ...
1
vote
1answer
1k views

cxf Spring Maven dependency conflict

Our project is using the following cxf dependencies: <dependency> <groupId>org.apache.cxf</groupId> <artifactId>cxf-rt-core</artifactId> ...
4
votes
3answers
737 views

What is the difference between “Module Dependencies” and “Libraries” in IntelliJ IDEA?

What is the difference between "Module Dependencies" and "Libraries" in IntelliJ IDEA when you want to add an .jar library to your project? Also, What is the "Export" check when you are adding your ...
0
votes
1answer
83 views

Automatically update JAR in WAR dependency lib from second project in Eclipse workspace on build/deploy

I am working on a web service with a team using SVN. The app is (currently) divided into 2 projects in Eclipse, Project A with controllers and views, and Project B with framework support and data ...
0
votes
1answer
106 views

dependence wso2 application in $PATH/repository/components/lib/

I have a problem in wso2 application I paste one jar in repository/components/lib/ as dependence but the wso2app does not find when accessing the service, throws the exception: ...
0
votes
3answers
65 views

Exact time of looking for dependency in Java

When exactly Java looks for dependencies of a Jar file at Run Time? At the very beginning of running it? When it tries to Initialize a Class which has some dependency? Or any other time?
1
vote
1answer
281 views

How can I make sbt tell me where it resolves dependencies?

I am using sbt 0.12 RC2. My project has a bunch of library dependencies, and some of these trigger other dependencies. Some of these dependencies are unmanaged (in lib/), some are in my local .ivy2 ...
0
votes
1answer
414 views

adding aspectJ jar in maven project

I created the AspectJ/maven project1 which can generate logs for particular methods. Maven created a .jar file which I added to maven project2. The problem is that project2 doesn't seem to 'see' it ...
0
votes
1answer
1k views

Deploying multiple 3rd party JARs to global (internal) Maven nexus

I have a load of 3rd party JAR files (around 40 different JARs from various SDKs I'm using) sitting in a folder on my hard drive. I want to declare those JARs as dependencies in my future maven ...
0
votes
2answers
58 views

Is there a procedure to be followed to add external jars to a custom confluence plugin development environment

I added this dependency chunk in my pom.xml <dependency> <groupId>freeway</groupId> <artifactId>axis</artifactId> ...
0
votes
0answers
303 views

My Maven Dependencies are ClassNotFound Exception or NoClassDefFoundError

Here again (I had to rewrite it to make it more comprehensive i guess): I got project X and project Y. They are independant from each other. While project X is working with all hibernate ...
4
votes
2answers
104 views

Dependencies of a JAR

I created a Jar with Java 6. Now I'm creating a release document and recording the dependencies. How can I find the earliest version of Java that can successfully run the Jar, and the earliest version ...
0
votes
0answers
62 views

WAR with dependecies with dependencies

I have many projects who depends each others. I have an ant file for each project for build a JAR file (compile and build JAR) I have another ant file to build a WAR for a WebService project who ...
2
votes
1answer
1k views

How to add Java JAR files to Grails project?

I have a few Java/Maven projects that I want to use in a Grails 2.0.4 project. I have tried various approaches, such as: Installing the JAR files in my local maven repository, and executing grails ...
2
votes
3answers
2k views

Export of runnable Java Class to .jar file including only required dependencies [duplicate]

Possible Duplicate: How to determine which classes are used by a Java program? I have a Java project on Eclipse that contains a lot of Java classes. I want to export one of them to a .jar ...
0
votes
1answer
338 views

In Eclipse, how to search for a class in maven managed dependencies? [duplicate]

Possible Duplicate: find pom dependencies by classname When all my dependencies are managed by maven in eclipse, then how do I use something like Ctrl+ Shift+ T to search for a dependency? ...
3
votes
2answers
522 views

Where to deploy a jar dependency of my webservice?

My webservice depends upon a jar (which contains a custom Exception class among others). When I deploy simply my webservice without this jar, axis2 complains that the Exception class is not known. ...
1
vote
1answer
102 views

What the timeout for maven snapshots in eclipse?

I have web application that I run on tomcat embedded in eclipse. It works ok, but when I try next day - it needs clean install/build/refresh all dependencies. If I will not this - eclipse will not ...
0
votes
1answer
55 views

What to check in web project if library exists by error class not found?

I have java web application, that uses hibernate core 3.6.7, I have check that in WEB-INF/lib exists hibernate-core-3.6.7.Final.jar, but when I run application (eclipse embedded) I receive error: ...
0
votes
1answer
318 views

Building a WAR with unzipped JAR dependencies?

I would like to include all my .class from a dependency jar into WAR classes/ directory instead of having a Jar in lib/ directory. I have : my-webapp/ ... WEB-INF/ lib/ ...
1
vote
0answers
779 views

Maven assembly, jar-with-dependencies and excluded project class(es)

I have a Maven project with one class with main method and I'd like to create one big executable jar with Maven. Here's the configuration: <build> <plugins> <plugin> ...
2
votes
1answer
2k views

Can't find class from maven dependency project

[CLOSED - I had to move classes from test/java to main/java and update the maven repository via the IDE "maven options"] I'm new to maven and inexperienced with java development. I'm using IntelliJ ...
3
votes
3answers
579 views

Which jars exactly are needed to embed Neo4j?

EDIT This question is not about how to solve dependencies using Ant / Maven / Gradle or whatnots. I'm trying to use Neo4j and I'm a bit confused by the docs as to what I need to embed a very simple ...

1 2 3