Package org.codehaus.mojo.buildhelper
Class UpToDatePropertiesMojo
- java.lang.Object
-
- org.apache.maven.plugin.AbstractMojo
-
- org.codehaus.mojo.buildhelper.AbstractDefinePropertyMojo
-
- org.codehaus.mojo.buildhelper.AbstractUpToDatePropertyMojo
-
- org.codehaus.mojo.buildhelper.UpToDatePropertiesMojo
-
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled
,org.apache.maven.plugin.Mojo
@Mojo(name="uptodate-properties", defaultPhase=VALIDATE, threadSafe=true) public class UpToDatePropertiesMojo extends AbstractUpToDatePropertyMojo
Sets multiple properties according to whether multiple sets of source and target resources are respectively up to date.- Since:
- 1.12
-
-
Field Summary
Fields Modifier and Type Field Description private boolean
skip
Disables the plug-in execution.private java.util.List<UpToDatePropertySetting>
upToDatePropertySettings
List ofUpToDatePropertySetting
s to apply.-
Fields inherited from class org.codehaus.mojo.buildhelper.AbstractDefinePropertyMojo
project
-
-
Constructor Summary
Constructors Constructor Description UpToDatePropertiesMojo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
execute()
-
Methods inherited from class org.codehaus.mojo.buildhelper.AbstractUpToDatePropertyMojo
execute
-
Methods inherited from class org.codehaus.mojo.buildhelper.AbstractDefinePropertyMojo
defineProperty, getProject
-
-
-
-
Field Detail
-
upToDatePropertySettings
@Parameter(required=false) private java.util.List<UpToDatePropertySetting> upToDatePropertySettings
List ofUpToDatePropertySetting
s to apply.
-
skip
@Parameter(property="buildhelper.uptodateproperties.skip", defaultValue="false") private boolean skip
Disables the plug-in execution.
-
-