Created
February 18, 2013 22:11
-
-
Save arthurtsang/4981239 to your computer and use it in GitHub Desktop.
Aggregated Maven Report
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Mojo( name = "aggregate", aggregator = true, requiresDependencyResolution = ResolutionScope.COMPILE) | |
@Execute( phase = LifecyclePhase.GENERATE_SOURCES ) | |
public class AggregatorGeminiDoc extends GeminiDoc { | |
@Override | |
protected boolean isAggregator(){ return true; } | |
@Override | |
public boolean canGenerateReport() { | |
return ( project.getModules().size() > 0); | |
} | |
@Override | |
public String getName(Locale locale) { | |
return "Aggregated Gemini Dependencies"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment