Package org.codehaus.mojo.wagon
Class AbstractDoubleWagonMojo
java.lang.Object
org.apache.maven.plugin.AbstractMojo
org.codehaus.mojo.wagon.AbstractWagonMojo
org.codehaus.mojo.wagon.AbstractDoubleWagonMojo
- All Implemented Interfaces:
org.apache.maven.plugin.ContextEnabled,org.apache.maven.plugin.Mojo
- Direct Known Subclasses:
AbstractCopyMojo
Provides base functionality for dealing with I/O using single wagon.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected booleanOptimize the upload by locally compressed all files in one bundle, upload the bundle, and finally remote uncompress the bundle.protected StringThe URL to the source repository.protected Stringsettings.xml's server id of the source repository.protected StringThe URL to the target repository.protected Stringsettings.xml's server id of the target repository.Fields inherited from class org.codehaus.mojo.wagon.AbstractWagonMojo
project, settings, skip, wagonFactoryFields inherited from interface org.apache.maven.plugin.Mojo
ROLE -
Constructor Summary
Constructors -
Method Summary
Methods inherited from class org.codehaus.mojo.wagon.AbstractWagonMojo
createWagon, getWagonFileSetMethods inherited from class org.apache.maven.plugin.AbstractMojo
getLog, getPluginContext, setLog, setPluginContextMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.maven.plugin.Mojo
execute
-
Field Details
-
source
The URL to the source repository. -
target
The URL to the target repository. -
sourceId
settings.xml's server id of the source repository. This is used when wagon needs extra authentication information. -
targetId
settings.xml's server id of the target repository. This is used when wagon needs extra authentication information. -
optimize
@Parameter(property="wagon.optimize", defaultValue="false") protected boolean optimizeOptimize the upload by locally compressed all files in one bundle, upload the bundle, and finally remote uncompress the bundle. This only works with SCP's URL
-
-
Constructor Details
-
AbstractDoubleWagonMojo
public AbstractDoubleWagonMojo()
-