A tag for Maven plugins development related questions (not the use of specific plugins).
52
votes
6answers
26k views
Difference of Maven JAXB plugins
I have determined that two JAXB plugins for Maven 2 exist, with some different configurations.
The one is from Sun: http://jaxb.dev.java.net/jaxb-maven2-plugin/, the other from Codehaus: ...
43
votes
4answers
31k views
Maven 3 warnings about build.plugins.plugin.version
Since I updated to Maven 3 I get the following warning messages at each build :
How can I get rid of these warnings?
[INFO] Scanning for projects...
[WARNING]
[WARNING] Some problems were ...
37
votes
1answer
20k views
Using Maven for C/C++ projects
I'm putting Maven build around cluster of amateur, poorly written and frankly - primitive C/C++ code (meaning some C, some C++). Problem is - there's lots of it in circulation currently and cannot be ...
29
votes
3answers
17k views
Maven 2.1.0 not passing on system properties to Java virtual machine
We use the command line to pass on system properties to the Java
virtual machine when running our Hudson builds on a Linux box. It used
to work quite well in 2.0.9 by since we upgraded to 2.1.0 it ...
27
votes
2answers
11k views
Maven test dependency in multi module project
I use maven to build a multi module project. My module 2 depends on Module 1 src at compile scope and module 1 tests in test scope.
Module 2 -
<dependency>
...
26
votes
5answers
16k views
m2e lifecycle-mapping not found
I am trying to use the solution described here to solve the annoying "Plugin execution not covered by lifecycle configuration: org.codehaus.mojo:build-helper-maven-plugin:1.7:add-source (execution: ...
23
votes
9answers
30k views
Tomcat 7 - Maven Plugin?
I just wanted to double-check, has anyone found or is working on a Tomcat 7 plugin? If not, is anyone interested in helping me get it up and running?
I want another quick alternative to Glassfish, ...
21
votes
2answers
458 views
How to support multiple Scala versions in a library
I have a fairly normal Scala project currently being built using Maven. I would like to support both Scala 2.9.x and the forthcoming 2.10, which is not binary or source compatible. I am willing to ...
19
votes
5answers
18k views
What are the URLs of all the Maven Archetype catalogs that you know about?
Maven Archetypes are the "templates" by which you can quickly generate a running example of a given framework or project type. I am trying to compile a list of all the Maven archetype catalogs ...
19
votes
6answers
3k 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 ...
18
votes
5answers
37k views
Maven: Including a META-INF folder in the classes folder
I have a very simple WAR project and I want to include a directory named META-INF at the top of the classes output folder where all the compiled Java classes are.
I'm using Maven, but it seems that ...
18
votes
2answers
4k views
MOJO (maven) what is it? stands for what?
Maybe it will be a silly question, anyway...
I'm reading about Maven right now and everywhere in text in see this word (mojo).. I approximately understand what it's mean, but I would not refuse from ...
16
votes
2answers
7k views
Run a single Maven plugin execution?
I thought I was an experienced Maven user, but I am having a mental block on how to do this!
I've been able to use the Maven sql plugin to drop, create, and install a schema in a database via plugin ...
15
votes
4answers
15k views
Maven 2 assembly with dependencies: jar under scope “system” not included
I am using maven-assembly plugin to create a jar of my application, including its dependencies as follows:
<assembly>
<id>macosx</id>
<formats>
...
15
votes
4answers
10k views
Tool for creating a Java daemon service on Linux
What is the best way to create a java application that can be run using ‘service’ on Linux? I was going to use the JSW available here, but cannot use the licence on that (licence is either GPL or it ...
15
votes
1answer
2k views
When to use MojoExecutionException vs MojoFailureException in Maven
The AbstractMavenMojo's execute method declares it throws two exceptions, MojoExecutionException and MojoFailureException. Throwing either results in the build stopping and the log displays an almost ...
14
votes
2answers
8k views
How to use Maven Surefire plug-in with different groups for test and integration-test?
I want to use testng with the Surefire plug-in of Maven. The idea is to tag some tests with a group integrationTest and run the plug-in twice: for goal test excluding the group integrationTest and for ...
14
votes
3answers
4k views
Add maven-build-classpath to plugin execution classpath
I am writing some coge-gen maven-plugin.
I need my project classpath be injected in to my plugin execution classpath.
I found this article. The solution there works but is quite long. Maybe someone ...
13
votes
2answers
14k views
How do I execute a program using Maven?
I would like to have a Maven goal trigger the execution of a java class. I'm trying to migrate over a Makefile with the lines:
neotest:
mvn exec:java ...
13
votes
4answers
4k views
How to get access to Maven's dependency hierarchy within a plugin
In my plugin I need to process the dependency hierarchy and get information (groupId, artifactId, version etc) about each dependency and if it was excluded. What is the best way to do this?
13
votes
2answers
11k views
How do I create a new packaging type for Maven?
I have a requirement to create jar files with Maven, but they need to be installed to the repository with a "foobar" extension , and it would be nice if they could have their own packaging type so we ...
13
votes
2answers
7k views
What is the best way to unit test a EJB3 component without having to deploy the component
I would like to have a JUnit (or other) system where the enterprise beans can be tested in a mock environment so that all resources/beans and so on are injected locally. The enterprise beans should ...
12
votes
2answers
3k views
Maven: How to use jetty:run in a multi-module Maven project, without needing to install
I'm new to Maven. I have a multi-module maven 2 project that has the following structure (somewhat simplified):
Project (POM packaging)
|
+-- Module1 (JAR)
| |
| +-- src
| ...
11
votes
4answers
8k views
Is it possible to create an “uber” jar containing the project classes and the project dependencies as jars with a custom manifest file?
I'm trying to create a executable jar(using maven) that contains the project classes and it's dependencies with a manifest file that has the entry for the main class and the class path entry that ...
11
votes
3answers
5k views
Newbie: maven archetype:generate
I haven't used maven before, now I start to learn what maven is and how to use it.
I am now following the maven.apache.org tutorial here to start my maven study.
In the section "How do I make my ...
11
votes
2answers
4k 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 ...
11
votes
3answers
2k views
Best way to access the runtime configuration of a maven plugin from a custom mojo?
I am writing a custom maven2 MOJO. I need to access the runtime configuration of another plugin, from this MOJO.
What is the best way to do this?
11
votes
3answers
510 views
What approach of improving incremental building of the maven projects do you prefer?
I am going to optimize time of building our projects. One of the most time-consuming thing is a compilation of the projects.
Due to known problem of the maven mentioned in particular here:
Maven ...
10
votes
4answers
5k views
How do I track plugin dependencies in maven2?
I am trying to locate an evil plugin that includes a stoneage version of a certain jar file. How do I do that ?
9
votes
2answers
12k views
Plugin error: execution not covered by lifecycle configuration
I am trying to use the maven-warpath-plugin available here. But I keep getting an error in my pom.xml file that says:
Plugin execution not covered by lifecycle configuration: ...
9
votes
1answer
4k views
Multiple antrun tasks in maven
How would you execute ant tasks at different phases in a maven build cycle?
9
votes
4answers
3k views
Maven plugin for building debian package
I am looking for a maven plugin which can build debian package. I could find the following but not sure which one is good:
http://mojo.codehaus.org/deb-maven-plugin/
...
9
votes
3answers
3k views
Maven Cobertura plugin not generating coverage.xml
I am trying to generate a coverage.xml so that I can reference it in Cobertura plugin of Hudson, but the file is not being created.
I've added the following to my POM
<reporting>
...
9
votes
2answers
10k views
How to declare a before and after execution of a maven plugin around another plugin execution
I would like to create an execution order in my plugin which surrounds a maven plugin with a before and after execution of another maven plugin. All 3 executions are part of the deploy phase.
Here is ...
9
votes
3answers
10k views
Excluding “provided” dependencies from Maven assembly
I am trying to use the Maven assembly plugin to build a jar-with-dependencies, except those that have provided scope.
I have copied the jar-with-dependencies into an assembly.xml file and configured ...
9
votes
2answers
495 views
Creating Hermetic Maven Builds
I am attempting to create a way in which hermetic builds can be achieved while still relying on SNAPSHOT dependencies in your project.
For the purposes of example, say I have a project which has a ...
9
votes
2answers
264 views
How to read maven settings in .m2/settings.xml file from plugin
Three questions in decreasing order of importance - Links will do.
I need to read certain maven settings such as proxies, servers in my maven plugin. How do I read them from my plugin. I can read ...
8
votes
5answers
7k views
Maven javadoc plugin - how can I include only certain classes?
Using the Maven javadoc plugin you can exclude certain packages - but I have lots of packages and only a handful of classes I want to produce Javadoc for.
Is there a way to include rather than ...
8
votes
6answers
3k views
What is the best way to avoid maven-jar?
I am using a different plugin (ant4eclipse) to jar my files. What is the best way to avoid the maven-jar plugin from executing?
I tried to remove the <plugin>maven-jar-plugin</plugin>
I ...
8
votes
4answers
3k views
Ignoring report generation for specific classes in cobertura maven plugin
Ive been using cobertura plugin for report generation and instrumentation, (with surefire).
Here is the issue I am facing.
I am unable to make the plugin ignore report generation for specific classes ...
8
votes
1answer
5k views
Error in pom file in Maven project after importing into Eclipse
I am actually new to the Maven framework. I already have a Maven project. I installed the Maven plugin etc into my EclipseIDE from http://m2eclipse.sonatype.org/sites/m2e. Then I imported my project ...
8
votes
1answer
539 views
Is there still no solution for ignoring setter/getter (other trivial methods) with the cobertura-maven-plugin?
Did someone find a good solution to ignore trivial methods?
Using some automated testing like Unitils is not really an option, since the code-coverage should not go up if only getters/setters are ...
7
votes
4answers
12k 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
...
7
votes
1answer
4k views
maven, ant plugin, antrun:run
When executing 'mvn antrun:run' my tasks are not run.. I have an echo task, but no output is shown.. When running the phases that the tasks are bound to, they do get executed..
How do I specifically ...
7
votes
5answers
1k views
How do you force a maven MOJO to be executed only once at the end of a build?
I have a MOJO I would like executed once, and once only after the test phase of the last project in the reactor to run.
Using:
if (!getProject().isExecutionRoot()) {
return ;
}
at the ...
7
votes
4answers
5k views
Maven build number plugin, how to save the build number in a file?
I've a Java project using Spring Framework and Git and I wanted to display a build number. I found the Build Number Maven plugin. With Git the build number is a Git hash. I dislike that and I thought ...
7
votes
2answers
494 views
Maven Plugin Fork Process With Proper Classpath
I am creating a Maven plugin with a rather unique requirement for proper operation: it needs to spawn new processes of itself and then wait for those processes to complete a task.
While this is ...
7
votes
3answers
675 views
Maven: Where to put generated resources for tomcat-maven-plugin?
I have CSS and JavaScript files in src/main/webapp directory of my project.
I want to join add joined and minified version of these resources to my WAR file and to the place where tomcat-maven-plugin ...
7
votes
2answers
4k views
Pass command line Params in mvn exec:exec
I am amazed that what should have been a very easy job is turning into a very annoying task for me. All i need is to pass few command line parameters to my maven exec:exec plugin. unfortunately hours ...
6
votes
1answer
2k views
How do you select the file name of a maven jar-with-dependencies?
I am creating an executable jar using the jar-with-dependencies component of the maven-assembly-plugin during the package phase of my maven lifecycle. However, I can't see a way to configure the name ...
