Download
Artifacts and files may be downloaded from configured locations.
Legend:
-
required
-
optional
-
may use environment variable
-
accepts Name Templates
#
download:
# Enable or disable all configured downloaders.
# Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
# Defaults to `ALWAYS`.
#
active: ALWAYS
#
[download]
# Enable or disable all configured downloaders.
# Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
# Defaults to `ALWAYS`.
#
active = "ALWAYS"
{
//
"download": {
// Enable or disable all configured downloaders.
// Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
// Defaults to `ALWAYS`.
//
"active": "ALWAYS"
}
}
<jreleaser>
<!--
-->
<download>
<!--
Enable or disable all configured downloaders.
Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
Defaults to `ALWAYS`.
-->
<active>ALWAYS</active>
</download>
</jreleaser>
jreleaser {
//
download {
// Enable or disable all configured downloaders.
// Supported values are [`NEVER`, `ALWAYS`, `RELEASE`, `SNAPSHOT`].
// Defaults to `ALWAYS`.
//
active = 'ALWAYS'
}
}
When not explicitly set, the value of active may be resolved from an environment variable JRELEASER_DOWNLOAD_ACTIVE
or from a system property jreleaser.download.active . The system property takes precedence over the environment variable.
|