Skip to content

Tag Archives: Build

Maven and Idea

Here is how to ask Maven to generate Idea project files for you:

mvn idea:idea -DjdkName=1.5

(via Maven)

A Maven Dashboard Report Plugin

The basic purpose of “Maven Dashboard Report Plugin” is to centralize and share all quality informations generated by other Maven report plugins
like CheckStyle, PMD, and SureFire.

A Maven Build Number Plugin

This mojo is designed to get a unique build number for each time you build your project.
Of course, you can specify your own format; at least according to the docs.

A Maven build number plugin

Here is a plugin to:
get a unique build number for each time you build your project. So while your version may remain constant at 1.0-SNAPSHOT for many iterations until release, you will have a build number that can uniquely identify each build during that time. The build number is obtained from scm, and in particular, [...]

A Maven token replacement plugin

Here is a Maven plugin to replace tokens within a file.
(via Maven)