Tagged Questions
A tag for Maven plugins development related questions (not the use of specific plugins).
25
votes
4answers
9k views
Difference of maven jaxb plugins
I have determined that two jaxb plugin for maven2 exist, with some different configurations.
The one is from Sun: http://jaxb.dev.java.net/jaxb-maven2-plugin/ the other from Mojo: ...
20
votes
4answers
10k 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 ...
16
votes
1answer
7k 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 ...
14
votes
4answers
9k 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 ...
14
votes
4answers
7k views
GOOD tutorial for writing Maven plugins?
Can someone please recommend a GOOD online tutorial for writing maven2 plugins?
I looked at about 5 tutorials yesterday and each skipped steps, didn't tell you where key components (referenced in ...
12
votes
2answers
5k 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 ...
11
votes
2answers
4k 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>
...
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?
9
votes
2answers
1k 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?
8
votes
2answers
3k 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 ...
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
1k 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
| ...
7
votes
2answers
4k 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 ...
7
votes
1answer
935 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 ...
6
votes
3answers
1k 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 ...
6
votes
6answers
1k 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 ...
6
votes
4answers
3k 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 ...
6
votes
3answers
4k 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 ...
6
votes
2answers
6k views
Maven2 compiler custom execution source directory and target directory
I want to run the maven compiler plugin in a different phase and with different sourceDirectories and destinationDirectories such that code from directories other than src/main/java and src/test/java ...
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
3answers
2k views
GWT 2.1 and the Codehaus Maven plugin
Has anybody managed to get the release of GWT 2.1 to work with the Codehaus Maven plugin?
http://mojo.codehaus.org/gwt-maven-plugin/
The 1.2 stable release does not seem to work. I found a version ...
5
votes
2answers
626 views
Determining Maven execution phase within a plugin
I have a plugin which transforms the compiled classes. This transformation needs to be done for both the module's classes and the module's test classes. Thus, I bind the plugin to both the ...
5
votes
5answers
8k 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, ...
5
votes
2answers
64 views
Modifying POM settings from plugin code
I've just recently started writing Maven plugins and was wondering if there is a common way to modify the values within the pom.xml file e.g. changing an artifacts version number. With the exception ...
5
votes
1answer
2k views
maven site plugin not deploying subprojects in a multimodule project or generating index.html
I have a multimodule project that I want to deploy a site for, but it seems like my site deployment configuration is not being inherited by subproject child modules.
parent
moduleA
moduleB
On ...
5
votes
2answers
5k 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 ...
5
votes
2answers
2k views
String arrays as command line arguments for maven plugin
I'm writing a maven plugin that has a parameter that's a String[].
Like this:
/**
* @parameter expression="${args}"
*/
protected String[] args;
This can be utilized through the POM like this:
...
5
votes
4answers
20k views
Maven: Including a META-INF folder in the classes folder
I have a very simple war project and I want to include a folder:META-INF at the top of the classes output folder where all the compiled java classes are.
Im doing this by using maven but it seems ...
5
votes
1answer
436 views
mvn release:prepare doesn't catch that I have modified files?
Running on a Windows system, against a locally hosted VisualSVN server instance. I have C:\Program Files\VisualSVN Server\bin on my PATH variable so that I can simply run svn commands from the command ...
5
votes
1answer
2k views
Multiple antrun tasks in maven
How would you execute ant tasks at different phases in a maven build cycle?
5
votes
2answers
2k views
Is the maven-native-plugin widely used to build C++ projects using maven?
It's been a little while since I did C++ development professionally and I'd like to get caught up on what the current state of C++ development is in a number of areas. Most of my recent work has been ...
4
votes
3answers
495 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
3answers
442 views
Maven failure to find maven-plugins:maven-cobertura-plugin
I try to compile maven web project with
<dependency>
<groupId>org.springframework.ws</groupId>
<artifactId>spring-ws</artifactId>
...
4
votes
1answer
46 views
How to run a plugin only for “war” package type in Maven?
Provided two Maven projects: J (jar), W (war); both depend on one parent P (pom). The parent has a plugin, which must only run for the project "W".
How does one go about doing this:
without ...
4
votes
1answer
955 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
1answer
174 views
Maven Plugin puts -d32 -XstartOnFirstThread in GWT launch file on a Mac
Using Maven M2 Plugin from Sonatype on a Mac. Unfortunately every time I run Maven to "Update Project Configuration" it modifies my-app-hosted.launch file by putting "-d32 -XstartOnFirstThread" in ...
4
votes
2answers
621 views
How to use space in arguments for Maven 2 exec plugin
Related Question: Maven Exec Plugin not reading configuration
In my configuration I need an argument which is a file path. I found a rather "dirty" workaround by surrounding the argument with quotes ...
4
votes
3answers
327 views
Maven: how to pass parameters between Mojos?
How do I program one Mojo to set another Mojo's configuration? For example: Mojo A requires configuration parameter A.foo to be defined. A user can either specify A.foo manually or run plugin B which ...
4
votes
2answers
2k 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 ...
4
votes
2answers
482 views
Is there a Maven plugin to generate AS3 classes from Java for BlazeDS?
I'm looking for a maven plugin that would generate ActionScript3 classes from Java classes in order to access them by object remoting.
I've seen FlexMojo but it uses the GraniteDS generator wich ...
4
votes
3answers
182 views
maven plugin goals
I'm developing a Maven plugin that will have provide 5 goals. You can either execute goals 1-4 individually, or execute goal5, which will execute goals 1-4 in sequence. I've been looking for a way to ...
4
votes
2answers
954 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 ...
4
votes
2answers
2k 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 ...
4
votes
4answers
6k 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>
...
4
votes
2answers
5k 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 ...
4
votes
1answer
2k views
How can I download Maven artifacts within a plugin?
I have a Maven plugin that takes a groupId, artifactId, and version in its confiugration.
I want to be able to download that artifact from the remote repositories and copy the file into the project. ...
4
votes
4answers
3k 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 ...
4
votes
3answers
722 views
Maven 2 Assembly plugin - how to split main artifacts and dependencies into separate folders
I am using Assembly plugin for maven to create an installation package.
For my packaging requirement, I need to split artifacts generated during the build and all dependencies into separate folders.
...
4
votes
2answers
1k views
Error in GMaven Plugin
Whenever I execute the gmaven plugin, I get the following problem
org.apache.maven.lifecycle.LifecycleExecutionException: Internal error in the plugin manager executing goal ...
4
votes
2answers
2k 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 ...