4.7.9 Plugin Install Failure Strategies - Reference Documentation
Authors: Andres Almiray
Version: 1.2.0
4.7.9 Plugin Install Failure Strategies
Failures may occur during plugin installation. It may be the case that a plugin could not be found in the configured repositories, or a JAR dependency failed to be resolved. When this happens the build will try its best to cope with the error, usually by continuing installing remaining plugin dependencies (if any).This behavior can be altered by specifying a value forgriffon.install.failure
. Accepted values are:Value | Description |
---|---|
abort | Aborts the installation sequence, even if there are other plugins left to be installed. It will also delete all installed plugins in the current session. This is the old behavior prior to Griffon 0.9.5. |
continue | Continues with the next plugin in the list. This is the default behavior. |
retry | Retries failed plugins a second time. A second failure skips the plugin from being installed but does not affect any other plugins that have been successfully installed or are yet to be installed. |
griffon -Dgriffon.install.failure='abort' compile