0
votes
1answer
33 views

empty Maven mojo parameter instead of null

I was wondering whether it's possible to distinguish "parameter not specified" from "parameter is empty". In both cases the Mojo parameter has the value null. I want the default value to kick in, if ...
0
votes
1answer
142 views

Maven Plugin Development - Include Current Project's Resources to Plugin - “include-project-dependencies” - “NoSuchElementException”

I am trying to develop a maven plugin that uses resource files of the project that uses it as a plugin. I implemented that suggestion into my maven-plugin project and it was builded well. But when i ...
0
votes
0answers
118 views

what's the difference between maven2 and maven3 when specify an expression for a Mojo parameter in Maven

we have developed a maven plugin it can work as expected in Maven2, but when we migrated to Maven3, we got an issue. below is the code snip /** * @parameter expression="${classifier}" * @since ...
1
vote
2answers
183 views

Maven : what does “build life cycle mapping” mean

I have been trying to understand the concepts of Maven and I find it difficult to understand the terminology used. I came across this term "build life cycle mapping". Could anybody give me a clear ...
0
votes
2answers
90 views

Custom type converter for Mojo configuration?

I need to use custom type, e.g., LunarDate, in my Mojo object: class MyMojo extends AbstractMojo { /** @parameter */ LunarDate lunarDate; } And I want to configure the parameter in ...
1
vote
0answers
220 views

maven custom lifecycle is not recognized

I am trying to test a simple custom plugin with custom lifecycle. Here is my EchoMojo.java file: package org.sonatype.mavenbook.plugins; import org.apache.maven.plugin.AbstractMojo; import ...
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 ...
2
votes
1answer
417 views

Creating a Maven Mojo that automatically adds new source folders to the build

I have created a new compiler for the maven-compiler-plugin. This compiler likes to look for compile sources in both src/main/groovy and src/main/java. Similarly, test sources are in both ...
0
votes
1answer
319 views

Passing parameters to Custom Lifecycle from a mojo

i have written a custom maven plugin which extends the axis2 wsdl2java plugin with the concept of creating custom lifecycle where the wsdl2java plugin is executed before goal of my custom plugin is ...
2
votes
1answer
581 views

How do I run a Maven Plugin on all modules?

I have a custom plugin that I run on all our projects as part of the release:perform goal. We are just starting to use multi-module builds, and I notice that my plugin only runs at the top module. ...
2
votes
1answer
434 views

How to define a default mojo for a maven plugin

I've written a plugin that generate one file in target/generated-sources/. This plugin only has one mojo. This mojo is declared with the following : /** * @goal convertsql * @phase generate-sources ...
2
votes
1answer
419 views

Maven: How to write custom plugin to copy static resources?

All our projects that are using docbook for creating documentation must have a set of static resources (images, css files and the like) in a particular target folder structure during site generation. ...
1
vote
1answer
272 views

How do I get a Git change set ID from the Maven SCM abstraction

I have a Maven Mojo plugin that interrogates the SCM to produce a report. It collects the comment, author and date entries fine. I now need the actual commit ID. So, given the following log ...
1
vote
1answer
90 views

Triggering SOAP requests in a Maven Mojo

I have a WSDL which I need to trigger some commands from. I need to do this as part of a Maven Plugin (Mojo) I'm a relative newbie to SOAP so what I want to know is this: 1) Is this possible? Can ...
3
votes
1answer
210 views

Detect maven build status (success/error) from a maven plugin

I am wondering how would one get the status of a build (ERROR/SUCCESS) from a maven plugin ?
2
votes
2answers
981 views

Maven: How can my mojo access its own resources?

I have a project (here called my-artifact) which needs to generate sources from a model file. I've created a maven-plugin (my-code-generator) which is used as described in the pom.xml excerpt below. ...
2
votes
0answers
2k views

Maven: How to get all transitive dependencies programatically in a MOJO [duplicate]

Possible Duplicate: How to get access to Maven’s dependency hierarchy within a plugin. The dependency:tree plugin:goal has an option 'verbose' which displays all conflicts & ...
0
votes
2answers
2k views

Maven: Java classes don't compile after Ant task

My project generates source code using the Rats! parser generator. Rats! doesn't have a Maven plugin that I'm aware of, so I'm trying to build the parser using an Ant Java task, like so: ...
0
votes
1answer
245 views

How to get the name of goal in maven2's Mojo at runtime

For Maven2 how can I get the name of goal currently being executed in Mojo's execute method? Precisely I need value of @goal attribute inside Mojo's execute method.
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 ...