10
votes
2answers
82 views

Creating a Java application that downloads its own dependencies

I'm interested in how to distribute a Java application that has a lot of dependencies (specified in a pom.xml in Maven). Obviously it would be possible to just package everything in one big .jar ...
10
votes
3answers
5k views

Why Spring 3 needs explicit cglib dependency declaration when using Maven?

I'm using spring 3 and maven. I've defined all spring modules in my pom.xml. When I use <aop:scoped-proxy /> annotation, I've got an error saying that cglib is missing. Well... I add cglib ...
6
votes
2answers
80 views

Recompilation of dependencies with Maven - possible? Any performance boost?

I was thinking about dependencies in Maven. Maven downloads them but it is unknown for what target version of JVM are they compiled for and with what compiler. This raises two questions: Would ...
6
votes
2answers
2k views

How do you generate module dependencies in MANIFEST.MF for JBoss 7 with maven?

In JBoss AS 7, a Web application that depends on libraries contained in the AS, must declare those dependencies in META-INF/MANIFEST.MF like this: Dependencies: <package-name> Example: ...
6
votes
2answers
260 views

Dependency management for big projects

I am working in a fairly big project. We have lots of projects and each project has dependencies. We use maven and normally we don't have any problems. So, without giving much details, imagine that ...
6
votes
2answers
1k views

RequireJS Compilation in Maven project with external JS dependencies

I have a web project that's built with Maven and I'm trying to figure out the best way to compile the JavaScript files with the RequireJS compiler (this question could apply to any compiler/minifier ...
5
votes
2answers
59 views

Does maven-compiler-plugin consider dependencies when checking for stale sources?

Ant's depend task allows one to recompile Java source-code if any of its dependencies (referenced classes, not module dependencies) have been modified. I took a quick look at ...
5
votes
1answer
343 views

how can I specify a local jar file as a dependency in play! framework

I have a jar file copied in the lib directory I'd like to run "play deps --sync" without this jar being deleted.. I've already looked at depency file documentation but couldn't figure out how to do ...
5
votes
2answers
949 views

Problem with dependencies in m2eclipse

I have a problem with m2eclipse and Nexus. Normally, when you create a new Maven Project in Eclipse, you can select an Archetype like maven-archetype-quickstart from the Nexus Indexer. Unfortunately, ...
5
votes
2answers
4k views

How to update maven local repository with newer artifacts from a remote repository?

My maven module A has a dependency on another maven module B provided by other people. When I run "mvn install" under A for the first time, maven downloads B-1.0.jar from a remote repository to my ...
4
votes
4answers
99 views

How to find out which dependencies need to be included?

I'm fairly new to Java/Spring and am trying to put together a simple app which will include some basic CRUD operations and I'd like to use Hibernate for data access. I'm using Maven as my build tool. ...
4
votes
2answers
102 views

maven plugin for eclipse, proxy issue

I use m2eclipse to integrate Eclipse (Indigo) and Maven. I also use a proxy, so I have a Settings.xml with the correct host and port. I've configured the LAN Settings of the OS too, so Eclipse is ...
4
votes
5answers
103 views

Traditional Open Source Java Application

I've been using Java for my "home projects" for a while and now there's a need to make some of my projects available through the repositories like github or Google Code. As long as I'm the only ...
4
votes
1answer
943 views

How can i resolve plugin problem in maven:' Unable to load mojo'

I have configured all the dependencies in my pom.xml through maven. when i give the command 'mvn install' I get the following error: [INFO] Internal error in the plugin manager executing goal ...
4
votes
4answers
567 views

How can I have a Maven dependency on the runtime classpath but not the test classpath?

I have a case where I want a dependency on the runtime classpath but not the test classpath. The dependency in question is Logback, an SLF4J implementation. In runtime, I want my code to ...
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
1answer
7k views

What are the Maven dependencies to use hibernate, hibernate annotations, and ehcache?

Okay, apparently I am stupid and everyone else knows. I would like to update my Maven pom.xml with the latest hibernate, hibernate-annotations, and ehcache dependencies. I read the hibernate ...
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
0answers
95 views

Tool to convert Maven pom.xml to leiningen project.clj

I want to use the leiningen checkouts/ directory feature, but this feature requires that the project under checkouts/ checked out directory contains a project.clj. I have a project (pallet) that has a ...
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
139 views

Maven: use specific test-classes of project A in project B

I have projects A and B where B requires A. Inside project A I have a utility-class UC that should only be available for JUnit-tests and, therefore, resides in src/test/java of project A. As long as I ...
3
votes
3answers
107 views

How to find the artifacts that depend on another artifact?

We are using Maven to build our projects and Nexus as repository manager. Is there a way to know where an artifact is a dependency of another artifact? For example, we want to know which of the ...
3
votes
1answer
141 views

Maven3 global dependency exclusion

It is possible using Maven3 to have a global dependency exclusion instead of per-dependency exclusion ? If yes, how ? The documentation doesn't seems to be really friendly. Thanks. Later edit: Yeah, ...
3
votes
2answers
414 views

Sort maven dependencies in Eclipse

Just wanted to know if it is possible in Eclipse to sort Maven dependencies by alphabetical order? It's bothering me to have a list of 200 jars not ordered... :(
3
votes
1answer
544 views

How to detect unused maven dependencies

I have a maven project that was generated by Spring Roo. Now I am not sure whether I need all of its dependencies. Is there a tool to automate the process of detecting stale dependencies?
2
votes
3answers
63 views

Maven error when resolving dependency

I am new to Maven and am trying to set up one of my first POMs. My application will cache using EhCache. Going to Maven Central Repo (link here) I copy-n-pasted the <dependency> tag and copy it ...
2
votes
2answers
61 views

Maven + SLF4J: Version conflict when using two different dependencies that require two different SLF4J versions

I have a project that use both dependencies independently: BoneCP and Hibernate. But thanks to SLF4J and its version conflicts it does not work because BoneCP requires SLF4J 1.5 and Hibernate requires ...
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
3answers
131 views

How do I include a dependency's test jar into a Maven project's deployment?

I have two projects, foo and foo-web under the com.example group. foo-web depends on foo. To be able to develop the UI part of the application without depending on external services, dummy DAOs were ...
2
votes
2answers
139 views

Get maven runtime dependencies in ant

I want to get the set of runtime dependencies from maven in ant. I'm using the maven ant tasks. I know that you can limit the dependencies by scope (see docs): <artifact:dependencies ...
2
votes
3answers
120 views

Determining Java Project Dependencies in Eclipse

This is an incredibly silly question, I know... But I'm in the middle of converting a Java Project once built with Ant to do so with Apache Maven, instead. One of the steps I've read to accomplish ...
2
votes
2answers
94 views

Maven plugin to output class dependencies

I am looking for a tool, ideally a maven plugin, which can analyse a project and outputs a dependency graph. The graph would show the dependencies between classes, and the output format would be ...
2
votes
1answer
117 views

How do Grails' inherited/framework dependencies work when using Maven?

According to: http://grails.org/doc/latest/guide/3.%20Configuration.html#3.7.8 Maven Integration Grails' dependency resolution is disabled when using Maven and resolution instead occurs from the ...
2
votes
5answers
203 views

Maven dependency for whole org.springframework

How to set Maven dependency for all org.springframework ? I mean, how to do it in couple lines,instead of providing dependency for every module,e.g.: <dependency> ...
2
votes
2answers
184 views

Maven multi-module: aggregate common dependencies in a single one?

I have searched for such a question without finding anything, so here I go. I have a multi-module maven project. Multiple modules all inherit the same parent, where common dependencies are defined. ...
2
votes
2answers
539 views

Usage of maven ${basedir} in multi-module setup

I am using a local repository as described here. The repository-url is defined in the topmost pom.xml as <url>file:${basedir}/../3rdParty/maven-repository</url> Also, the topmost ...
2
votes
3answers
1k views

The POM for org.springframework.security:org.springframework.security.web:jar:3.0.5.RELEASE is missing, no dependency information available

When including into pom.xml <dependency> <groupId>org.springframework.security</groupId> <artifactId>org.springframework.security.web</artifactId> ...
2
votes
6answers
3k views

m2eclipse says “Missing artifact” but I can build from cmdline!

I'm trying to use this Sonatype Eclipse plugin for the first time to handle an existing (huge) software that I can build with maven form the command line. I have configured the plugin to use my maven ...
2
votes
2answers
4k views

How to figure out the jars that the dependencies in the maven's pom.xml depend on?

I am very interested in how I can find out what are the jars that the dependences in the maven's pom.xml depend on. I am used to doing the adding of libraries (jars) myself in my web application ...
2
votes
2answers
400 views

maven provided scope

<dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.5</version> ...
2
votes
1answer
102 views

How do I place my open source artifacts into a maven repository?

I have recently published a first stable release for my open source library http://jooq.sourceforge.net. On popular demand, I would like to place my artifacts into a maven repository, but I don't know ...
2
votes
1answer
56 views

Checking a maven project's repository portability

Is there any way to check all dependencies are downloadable from at least one listed repository? I was once omitted a required repository from my pom.xml. But maven didn't complain because those ...
2
votes
1answer
624 views

Maven confused about JRE been used

First off, I'm new to Maven, hence my problem might have a simple solution. I've created a project in eclipse and added maven dependencies. In Eclipse, it says that I am using JRE 1.5. Everything ...
2
votes
1answer
269 views

Maven2: Renaming provided dependecies at package phase?

Greetings I have an ear artifact with a finalName tag in its build definition in the POM. <artifactId>application-app</artifactId> ... <build> ...
2
votes
3answers
849 views

Dependencies for Axis2 1.5.1 generated stubs

I have server side java stubs created with wsdl2java from axis2 1.5.1. I'm trying to integrate these stubs into the grander application, but I'm having a heck of a time getting the axis2 1.5.1 ...
2
votes
2answers
75 views

How do I specify a dependency rule in Maven between files of certain suffixes?

I have a Java program that generates Java classes for my application. Basically it takes in a simple spec for a class and generates a specialized form of Java bean. I want to integrate this into my ...
2
votes
2answers
241 views

maven prevent denpendency compile

I have a custom jar which including java sources; Maven tries to compile when it builds. How do I skip source compile in the jar file? I have tried such as exclude with some pattern in the ...
1
vote
1answer
26 views
+50

maven scope for woven artifacts

I have a project foo-instrumented that depends on foo. This project actually instruments foo with additional code, and replaces it. That is, foo is a compile-time dependency of foo-instrumented but ...
1
vote
2answers
21 views

Maven - Declare as dependency or as parent

If you have Project A and it needs all the dependencies of Project B, do you declare Project B a parent of Project A or a dependency of project A? They seem to have the same effect Cheers,
1
vote
1answer
32 views

Maven - deploy dependencies to remote repository

I have a few projects with LOTS of maven dependencies. When I invoke the command mvn deploy (or some variation of it), I would like to not only have the project itself deployed to the remote ...

1 2 3 4