Top "Maven-2" questions

Apache Maven is a software project management and comprehension tool.

Making Maven run all tests, even when some fail

I have a project with several modules. When all tests pass, Maven test runs them all. When tests fail in …

java maven-2 surefire
How to add an extra source directory for maven to compile and include in the build jar?

In addition to the src/main/java, I am adding a src/bootstrap directory that I want to include in …

java maven maven-2
Git Ignores and Maven targets

Anyone know if it is possible to ignore all the instances of a particular directory in a file structure managed …

git maven-2 version-control gitignore
Maven: how to override the dependency added by a library

Here's my generic problem: My project P depends on A which depends on B which depends on C which depends …

maven-2 dependencies
Maven: How to include jars, which are not available in reps into a J2EE project?

in my J2EE project I've a couple of dependencies, which are not available in any Maven repository, because they're …

java maven-2 build-process
Build Maven Project Without Running Unit Tests

How do you build a Maven project without running unit tests? Currently restructuring some code I have for a Servlet …

unit-testing maven-2
A cycle was detected in the build path of project xxx - Build Path Problem

I'm in the process of converting my projects to OSGI bundles using maven and eclipse. Maven builds the stuff just …

java eclipse maven-2 osgi bundle
Create local maven repository

I want to create local maven repository. I did the following steps: Installed maven plugin in eclipse Created one folder …

maven maven-2 mvn-repo
Which maven dependencies to include for spring 3.0?

I am trying to do my first project with Spring 3.0 (and maven). I have been using Spring 2.5 (and primer versions) …

java spring maven-2 dependencies
Is there anyway to exclude artifacts inherited from a parent POM?

Artifacts from dependencies can be excluded by declaring an <exclusions> element inside a <dependency> But in …

java maven-2 pom.xml