Apache Maven is a tool for project management and build automation. Maven relies on a pom.xml file that describes the project instead of defining a set of tasks, like Ant does. A basic pom.xml looks like: <project> <!-- model version is always 4.0.0 for Maven 2 and Maven 3 POMs --> ...
37
votes
8answers
16k views
Buildr, Gradle or wait for Maven 3?
I am really tired of struggling with Maven 2 all the time. Build tools should not be in the way. Recently I have been looking at Buildr and Gradle. Maven 3 seems to fix some of the struggles. So, what ...
27
votes
3answers
4k views
How do you deal with maven-3 timestamped snapshots efficiently?
Now that maven-3 did drop support for the <uniqueVersion>false</uniqueVersion> for snapshot artefacts it seems that you really need to use timestamped SNAPSHOTS. Especially m2eclipse, ...
25
votes
3answers
3k views
Maven 3 - Worth it?
maven 3 beta is out since a couple of weeks and just thought for getting your views on the feature list for maven 3. Coz to me only two major features were added
Parallel execution of of project in ...
11
votes
2answers
248 views
Changing order of locations on classpath to be loaded up by surefire-plugin
Does anybody know how to change it ?
I mean from
target/test-classes ... target/classes .... maven dependencies
to
target/test-classes ... maven dependencies .... target/classes
It relates ...
11
votes
2answers
6k views
Warning on using project.parent.version as the version of a module in Maven 3
In maven multi-module projects where I want each of the modules to always keep the same version as the parent, I've typically done something like the following in the module's pom.xml:
...
10
votes
3answers
4k views
Maven 3 Artifact problem
I made a new struts project in eclipse using the struts2-archtype-starter.
A few errors where in my project already before doing anything. Solved most of them but there is 1 the still give me some ...
10
votes
1answer
1k views
Where is project timeline for Maven 3.1 available?
One feature of Maven 3 I am eagerly awaiting is automatic parent versioning, that is, no longer needing to hardcode the parent version in every child pom.xml.
This feature is apparently coming in ...
8
votes
3answers
759 views
Why maven doesn't generate project reports?
It's Maven 3.0. I'm creating a new project:
mvn archetype:create
Then I'm creating a file site/site.xml:
<project name="foo">
<body>
<menu name="Overview">
<item ...
7
votes
1answer
168 views
Profiling Maven
Are there tools that will profile the Maven build process itself so that I can see where the build is spending most time?
We're having issues at work with respect to Maven 3.0.3 and 3.0b1. Our ...
7
votes
1answer
2k views
Maven does not find JUnit tests to run
I have a simple program for which maven compiles it and its tests fine, but when I run mvn test it does not run any tests (under TETSTs header says There are no tests to run.). I've recreated this ...
7
votes
3answers
822 views
How to keep Maven profiles which are activeByDefault active even if another profile gets activated?
I have a profile in my pom.xml which should be always active unless it is explicitely deactivated (-P !firstProfile).
I solved this by using the activeByDefault flag:
<profiles>
...
7
votes
4answers
430 views
Developing Maven 3.0 Plugin
I have developed few Maven plugins for Maven 2, but I am wondering what are the main changes when I want to develop a plugin (or migrate the existing ones) for Maven 3.0.
The documentation on the ...
7
votes
2answers
114 views
Eclipse logical directory grouping
Is there any way, with the Eclipse IDE, to have a "master" folder containing several related projects?
The reason I want this is because I have several Maven webapps. With Maven it is convention to ...
7
votes
1answer
1k views
How to use Maven 3 mixins?
I was trying to figure out how mixins are defined in Maven 3, but couldn't find anything other than buzz. It is propagated as one of the big new features here and here. I am currently feeling the pain ...
6
votes
2answers
278 views
How does Maven resolve version conflicts of transitive dependencies ? nearest-wins strategy
I just finally got used to not having any Used undeclared or Unused declared dependencies in my projects. Although it is very hard to track Unused declared runtime/test dependencies that are listed in ...
6
votes
2answers
26k views
Maven Could not resolve dependencies Problem
It's a working project from my friend. He demonstrated the project right in front of me, and then i copied the project, import it as an existing maven project (im using m2eclipse plugin).
And then, an ...
6
votes
3answers
4k views
Hudson - Maven 3 - unable to build
I am having problems building a maven 3 pom:
[seam] $ /usr/lib/jvm/java-6-openjdk/bin/java -cp ...
5
votes
1answer
214 views
How do you perform a reactor build in Maven3 without a root project?
How does one perform an ad-hoc reactor build over multiple maven projects without a root project?
This used to be possible in maven2 by invoking the mvn command with the '-r' option which would ...
5
votes
1answer
1k views
Jetty Maven Plugin is ignoring custom webdefault.xml
I'm trying to get around the common issue of Jetty locking static files on Windows with the technique of setting useFileMappedBuffer to false in webdefault.xml. Unfortunately, every time Jetty is not ...
5
votes
2answers
442 views
How to break a maven build when there is a dependency conflict?
I ran mvn dependency:tree for a project and I saw output like the following:
[INFO] my:project:jar:1.0.0-SNAPSHOT
[INFO] +- some.other:library:jar:2.0.0:compile
[INFO] | \- ...
5
votes
2answers
1k views
Should I upgrade to Maven 3?
Are there any compelling reasons for me to upgrade to Maven 3 immediately? Nothing stands out from the release notes.
Have you upgraded to Maven 3 yet? If so, what benefits did you see?
5
votes
2answers
664 views
How to add dependencies to 3rd party library using nexus/maven
i'm trying to use Nexus + m2eclipse/maven-3 professionnally, and i've got a huge 3rd party library that needs a lot of dependencies.
Is there any ways to ease my pain by uploading to Nexus this ...
4
votes
3answers
499 views
Maven Dependencies can't be resolved
I'm using Apache Maven3 and since two or three days some dependencies can't be resolved any more, which first have not had a problem. To be more specific its:
maven-findbgs-plugin:plugin:1.3.1
...
4
votes
1answer
57 views
How to control project info generation only for the parent module
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
...
4
votes
3answers
147 views
Maven: how to specify which assembly plugin execution runs
I have a pom with multiple assembly executions. When I run, e.g. mvn package, it runs all the executions. How can I tell it to only run the foo execution?
<build>
<plugins>
...
4
votes
3answers
340 views
Efficient OSGi development workflow
I work on a product composed of many bundles running as features on top of karaf. Typically our developers work on one bundle at a time. Our normal development goes something like: code, compile, copy ...
4
votes
5answers
478 views
How is *mvn clean install* different from *mvn install*
That is the difference between mvn clean install and mvn install?
4
votes
1answer
6k views
maven 3 Failed to read artifact descriptor for
I upgrade to netbeans 7 which uses embeded maven 3. I have a project with lot of modules and modules containing other modules. My other submodules that don't depend on internal projects work fine with ...
4
votes
2answers
2k views
maven install and deploy 3rd party dependencies with simple command line
We have a number of third party dependencies that aren't hosted anywhere. For each of these we have a jar file that we'd like to be able to install and/or deploy to our repository. Some of the jar ...
4
votes
1answer
1k views
How do I generate site with mvn site:site?
I want to generate a site with mvn, but I cannot configure it to generate index.html.
I can ran different reports like:
$ mvn javadoc:javadoc # generates target/site/apidocs
$ mvn ...
4
votes
2answers
3k views
maven log file configuration
How can I configure logging for maven build? The log which maven generates is not providing enought information like time stamp with each log statement. Where/what log config file maven uses?
4
votes
4answers
1k views
Good learning resources for Maven 3/Mercury
I've been trying to find out more about Maven 3 and Mercury (Maven Mercury is a replacement for the Maven Artifact subsystem, and a complete replacement for the HTTP/HTTPS/DAV/DAVS portions of the ...
3
votes
3answers
94 views
Maven advice relating to versioning of a large project and the avoidance of versions containing expressions
I'm looking at restructuring a large Maven project...
A basic overview of our current structure:
build [MVN plugins, third party dependency management]:5.1
NRW Utils:6.0.0.0-beta12-SNAPSHOT
...
3
votes
0answers
53 views
maven-release-plugin and maven 3.0.3
I'm using the maven release plugin to perform the following with maven-3.0.3
mvn release:prepare
Everything seems to be going fine except that when it creates the tag in SVN, it copies the previous ...
3
votes
1answer
57 views
What is a good resource to understand maven [closed]
I am not entirely new to the maven world but i have never taken couple of hours to actually sit down and understand what maven is all about. Whenever anything needed to be done, I trusted google as a ...
3
votes
3answers
100 views
Searching Nexus never reveals latest artifact versions
Our shop uses Nexus to proxy for Maven Central and several other repositories. From time to time we use it to search for artifacts to see if what other versions might be available. However it ...
3
votes
1answer
80 views
How to get local repository location from Maven 3.0 plugin?
How to get local repository location (URI) from within Maven 3.x plugin?
3
votes
3answers
1k views
Installing maven on windows 7 64bit
I want to create a Tapestry Skeletion Project.
I follow to these guide:
http://maven.apache.org/download.html#Installation,
http://juanjoefe.com/tutoriales/instalar-maven-en-windows-7/
and other ...
3
votes
2answers
170 views
Should Maven dependency version ranges be considered deprecated?
Given that it's very hard to find anything about dependency version ranges in the official documentation (the best I could come up with is ...
3
votes
2answers
368 views
Where is super pom for maven 3?
For maven 2 it used to be in
M2_HOME/lib/maven-2.2.1-uber.jar:org/apache/maven/project/pom-4.0.0.xml
But 3.0.x does not have a single jar.
<whining>
It would also help if apache maven project ...
3
votes
1answer
371 views
Use dependencies from Eclipse P2 repository in a regular Maven build?
I'd like to use dependencies from a remote Eclipse P2 repository in a "regular" Maven 3 build (e.g. JAR or WAR packaging) - all without converting the P2 repo to a local Maven repo (which is what ...
3
votes
3answers
559 views
Maven multimodule project composition regarding dependencies sharing
There are a few similar questions, but nothing like this. How do you deal with this situation (typical scenario) :
A project of 8-11 child projects, having a parent artifact/project and one main ...
3
votes
3answers
784 views
Liferay 6 Using Common Service Builder layer Error - BeanLocatorException - BeanLocator has not been set
We are trying to use liferay service builder as a common layer for all our portlets. We have created a separate common portlet project where we are building the service using service.xml This ...
3
votes
2answers
292 views
Why is maven looking for artifact in the wrong repo?
I'm defining a dependency in pom.xml in a Maven 3 project. Dependency is as follows:
<dependency>
<groupId>org.glassfish.web</groupId>
...
3
votes
2answers
135 views
Maven - Sharing libraries between projects
I'm working on a multi-project, and right now I have a structure that resembles this (actually there are a couple of jar projects and a couple of war projects)
/myProj
|_______projA (jar)
| ...
3
votes
1answer
1k views
Maven: Could not find the main class
I am currently building a little Apache-Mina Server app. I am using Maven to build it.
When i try to run the jar, I get the following error:
Exception in thread "main" ...
3
votes
4answers
365 views
Find and replace a jar file using Maven
Suppose you are working on a big project, which is run on some application server (let's say Tomcat, but it may be also Jboss, or Jetty, or something else). The project consists of a several wars, ...
3
votes
4answers
1k views
Configure a hudson maven job to keep building if there are test failures, but only deploy if there are no test failures
I've created a hudson job for our maven multi-project with 5 modules to deploy the SNAPSHOT artifacts to the maven repository. That's ok, as long as it builds successfully without test failures. ...
3
votes
4answers
376 views
Is there a library for reading maven2/3 pom xml files?
I would like to read a pom.xml in Java code. I wonder if there is a library for that, so I can have an iterator for different sections, e.g., dependenes, plugins, etc. I want to avoid to build a ...
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 ...