diff --git a/guide/early-access/reference/assemble/java-archive.html b/guide/early-access/reference/assemble/java-archive.html
index 49908e79d..f145db768 100644
--- a/guide/early-access/reference/assemble/java-archive.html
+++ b/guide/early-access/reference/assemble/java-archive.html
@@ -982,6 +982,30 @@
Configurati
#
options: [-Xmx2048m]
+ # Environment variables used in launch scripts.
+ #
+ environmentVariables:
+ # Included in all scripts
+ #
+ universal:
+ KEY: value
+ # Included in all non Windows scripts
+ #
+ unix:
+ KEY: value
+ # Included in all non Windows (except OSX) scripts
+ #
+ linux:
+ KEY: value
+ # Included only in OSX scripts
+ #
+ osx:
+ KEY: value
+ # Included in Windows scripts
+ #
+ windows:
+ KEY: value
+
# Directory with file templates used to prepare the assembler.
@@ -1218,6 +1242,28 @@ Configurati
#
java.options = ["-Xmx2048m"]
+ # Environment variables used in launch scripts.
+
+ # Included in all scripts
+ #
+ java.environmentVariables.universal.KEY = "value"
+
+ # Included in all non Windows scripts
+ #
+ java.environmentVariables.unix.KEY = "value"
+
+ # Included in all non Windows (except OSX) scripts
+ #
+ java.environmentVariables.linux.KEY = "value"
+
+ # Included only in OSX scripts
+ #
+ java.environmentVariables.osx.KEY = "value"
+
+ # Included in Windows scripts
+ #
+ java.environmentVariables.windows.KEY = "value"
+
# Directory with file templates used to prepare the assembler.
# Defaults to `src/jreleaser/assemblers/#{distribution.name}/javaArchive`.
@@ -1467,6 +1513,36 @@ Configurati
//
"options": ["-Xmx2048m"],
+ // Environment variables used in launch scripts.
+ //
+ "environmentVariables": {
+ // Included in all scripts
+ //
+ "universal": {
+ "KEY": "value"
+ },
+ // Included in all non Windows scripts
+ //
+ "unix": {
+ "KEY": "value"
+ },
+ // Included in all non Windows (except OSX) scripts
+ //
+ "linux": {
+ "KEY": "value"
+ },
+ // Included only in OSX scripts
+ //
+ "osx": {
+ "KEY": "value"
+ },
+ // Included in Windows scripts
+ //
+ "windows": {
+ "KEY": "value"
+ }
+ },
+
},
// Directory with file templates used to prepare the assembler.
// Defaults to `src/jreleaser/assemblers/#$#{distribution.name}/javaArchive`.
@@ -1794,6 +1870,48 @@ Configurati
-->
<options>-Xmx2048m</options>
+ <!--
+ Environment variables used in launch scripts.
+
+ -->
+ <environmentVariables>
+ <!--
+ Included in all scripts
+
+ -->
+ <universal>
+ <KEY>value</KEY>
+ </universal>
+ <!--
+ Included in all non Windows scripts
+
+ -->
+ <unix>
+ <KEY>value</KEY>
+ </unix>
+ <!--
+ Included in all non Windows (except OSX) scripts
+
+ -->
+ <linux>
+ <KEY>value</KEY>
+ </linux>
+ <!--
+ Included only in OSX scripts
+
+ -->
+ <osx>
+ <KEY>value</KEY>
+ </osx>
+ <!--
+ Included in Windows scripts
+
+ -->
+ <windows>
+ <KEY>value</KEY>
+ </windows>
+ </environmentVariables>
+
</java>
<!--
@@ -2128,6 +2246,26 @@ Configurati
//
options = ['-Xmx2048m']
+ // Environment variables used in launch scripts.
+ //
+ environmentVariables {
+ // Included in all scripts
+ //
+ universal('KEY', 'value')
+ // Included in all non Windows scripts
+ //
+ unix('KEY', 'value')
+ // Included in all non Windows (except OSX) scripts
+ //
+ linux('KEY', 'value')
+ // Included only in OSX scripts
+ //
+ osx('KEY', 'value')
+ // Included in Windows scripts
+ //
+ windows('KEY', 'value')
+ }
+
}
// Directory with file templates used to prepare the assembler.
diff --git a/guide/early-access/reference/assemble/jlink.html b/guide/early-access/reference/assemble/jlink.html
index 4e247986a..50337a003 100644
--- a/guide/early-access/reference/assemble/jlink.html
+++ b/guide/early-access/reference/assemble/jlink.html
@@ -1091,6 +1091,30 @@ Configurati
#
options: [-Xmx2048m]
+ # Environment variables used in launch scripts.
+ #
+ environmentVariables:
+ # Included in all scripts
+ #
+ universal:
+ KEY: value
+ # Included in all non Windows scripts
+ #
+ unix:
+ KEY: value
+ # Included in all non Windows (except OSX) scripts
+ #
+ linux:
+ KEY: value
+ # Included only in OSX scripts
+ #
+ osx:
+ KEY: value
+ # Included in Windows scripts
+ #
+ windows:
+ KEY: value
+
# Maven coordinates: groupId.
# If left undefined, will use `#{project.java.groupId}`.
#
@@ -1447,6 +1471,28 @@ Configurati
#
java.options = ["-Xmx2048m"]
+ # Environment variables used in launch scripts.
+
+ # Included in all scripts
+ #
+ java.environmentVariables.universal.KEY = "value"
+
+ # Included in all non Windows scripts
+ #
+ java.environmentVariables.unix.KEY = "value"
+
+ # Included in all non Windows (except OSX) scripts
+ #
+ java.environmentVariables.linux.KEY = "value"
+
+ # Included only in OSX scripts
+ #
+ java.environmentVariables.osx.KEY = "value"
+
+ # Included in Windows scripts
+ #
+ java.environmentVariables.windows.KEY = "value"
+
# Maven coordinates: groupId.
# If left undefined, will use `#{project.java.groupId}`.
#
@@ -1833,6 +1879,36 @@ Configurati
//
"options": ["-Xmx2048m"],
+ // Environment variables used in launch scripts.
+ //
+ "environmentVariables": {
+ // Included in all scripts
+ //
+ "universal": {
+ "KEY": "value"
+ },
+ // Included in all non Windows scripts
+ //
+ "unix": {
+ "KEY": "value"
+ },
+ // Included in all non Windows (except OSX) scripts
+ //
+ "linux": {
+ "KEY": "value"
+ },
+ // Included only in OSX scripts
+ //
+ "osx": {
+ "KEY": "value"
+ },
+ // Included in Windows scripts
+ //
+ "windows": {
+ "KEY": "value"
+ }
+ },
+
// Maven coordinates: groupId.
// If left undefined, will use `#{project.java.groupId}`.
//
@@ -2328,6 +2404,48 @@ Configurati
-->
<options>-Xmx2048m</options>
+ <!--
+ Environment variables used in launch scripts.
+
+ -->
+ <environmentVariables>
+ <!--
+ Included in all scripts
+
+ -->
+ <universal>
+ <KEY>value</KEY>
+ </universal>
+ <!--
+ Included in all non Windows scripts
+
+ -->
+ <unix>
+ <KEY>value</KEY>
+ </unix>
+ <!--
+ Included in all non Windows (except OSX) scripts
+
+ -->
+ <linux>
+ <KEY>value</KEY>
+ </linux>
+ <!--
+ Included only in OSX scripts
+
+ -->
+ <osx>
+ <KEY>value</KEY>
+ </osx>
+ <!--
+ Included in Windows scripts
+
+ -->
+ <windows>
+ <KEY>value</KEY>
+ </windows>
+ </environmentVariables>
+
<!--
Maven coordinates>groupId.
If left undefined, will use `#{project.java.groupId}`.
@@ -2818,6 +2936,26 @@ Configurati
//
options = ['-Xmx2048m']
+ // Environment variables used in launch scripts.
+ //
+ environmentVariables {
+ // Included in all scripts
+ //
+ universal('KEY', 'value')
+ // Included in all non Windows scripts
+ //
+ unix('KEY', 'value')
+ // Included in all non Windows (except OSX) scripts
+ //
+ linux('KEY', 'value')
+ // Included only in OSX scripts
+ //
+ osx('KEY', 'value')
+ // Included in Windows scripts
+ //
+ windows('KEY', 'value')
+ }
+
// Maven coordinates = groupId.
// If left undefined, will use `#{project.java.groupId}`.
//
diff --git a/guide/early-access/reference/assemble/jpackage.html b/guide/early-access/reference/assemble/jpackage.html
index dd1b7d620..9f19acedb 100644
--- a/guide/early-access/reference/assemble/jpackage.html
+++ b/guide/early-access/reference/assemble/jpackage.html
@@ -1259,6 +1259,30 @@ Configurati
#
options: [-Xmx2048m]
+ # Environment variables used in launch scripts.
+ #
+ environmentVariables:
+ # Included in all scripts
+ #
+ universal:
+ KEY: value
+ # Included in all non Windows scripts
+ #
+ unix:
+ KEY: value
+ # Included in all non Windows (except OSX) scripts
+ #
+ linux:
+ KEY: value
+ # Included only in OSX scripts
+ #
+ osx:
+ KEY: value
+ # Included in Windows scripts
+ #
+ windows:
+ KEY: value
+
# Maven coordinates: groupId.
# If left undefined, will use `#{project.java.groupId}`.
#
@@ -1701,6 +1725,28 @@ Configurati
#
java.options = ["-Xmx2048m"]
+ # Environment variables used in launch scripts.
+
+ # Included in all scripts
+ #
+ java.environmentVariables.universal.KEY = "value"
+
+ # Included in all non Windows scripts
+ #
+ java.environmentVariables.unix.KEY = "value"
+
+ # Included in all non Windows (except OSX) scripts
+ #
+ java.environmentVariables.linux.KEY = "value"
+
+ # Included only in OSX scripts
+ #
+ java.environmentVariables.osx.KEY = "value"
+
+ # Included in Windows scripts
+ #
+ java.environmentVariables.windows.KEY = "value"
+
# Maven coordinates: groupId.
# If left undefined, will use `#{project.java.groupId}`.
#
@@ -2179,6 +2225,36 @@ Configurati
//
"options": ["-Xmx2048m"],
+ // Environment variables used in launch scripts.
+ //
+ "environmentVariables": {
+ // Included in all scripts
+ //
+ "universal": {
+ "KEY": "value"
+ },
+ // Included in all non Windows scripts
+ //
+ "unix": {
+ "KEY": "value"
+ },
+ // Included in all non Windows (except OSX) scripts
+ //
+ "linux": {
+ "KEY": "value"
+ },
+ // Included only in OSX scripts
+ //
+ "osx": {
+ "KEY": "value"
+ },
+ // Included in Windows scripts
+ //
+ "windows": {
+ "KEY": "value"
+ }
+ },
+
// Maven coordinates: groupId.
// If left undefined, will use `#{project.java.groupId}`.
//
@@ -2825,6 +2901,48 @@ Configurati
-->
<options>-Xmx2048m</options>
+ <!--
+ Environment variables used in launch scripts.
+
+ -->
+ <environmentVariables>
+ <!--
+ Included in all scripts
+
+ -->
+ <universal>
+ <KEY>value</KEY>
+ </universal>
+ <!--
+ Included in all non Windows scripts
+
+ -->
+ <unix>
+ <KEY>value</KEY>
+ </unix>
+ <!--
+ Included in all non Windows (except OSX) scripts
+
+ -->
+ <linux>
+ <KEY>value</KEY>
+ </linux>
+ <!--
+ Included only in OSX scripts
+
+ -->
+ <osx>
+ <KEY>value</KEY>
+ </osx>
+ <!--
+ Included in Windows scripts
+
+ -->
+ <windows>
+ <KEY>value</KEY>
+ </windows>
+ </environmentVariables>
+
<!--
Maven coordinates>groupId.
If left undefined, will use `#{project.java.groupId}`.
@@ -3361,6 +3479,26 @@ Configurati
//
options = ['-Xmx2048m']
+ // Environment variables used in launch scripts.
+ //
+ environmentVariables {
+ // Included in all scripts
+ //
+ universal('KEY', 'value')
+ // Included in all non Windows scripts
+ //
+ unix('KEY', 'value')
+ // Included in all non Windows (except OSX) scripts
+ //
+ linux('KEY', 'value')
+ // Included only in OSX scripts
+ //
+ osx('KEY', 'value')
+ // Included in Windows scripts
+ //
+ windows('KEY', 'value')
+ }
+
// Maven coordinates = groupId.
// If left undefined, will use `#{project.java.groupId}`.
//
diff --git a/guide/early-access/reference/assemble/native-image.html b/guide/early-access/reference/assemble/native-image.html
index e324a9fc5..4829b1d83 100644
--- a/guide/early-access/reference/assemble/native-image.html
+++ b/guide/early-access/reference/assemble/native-image.html
@@ -1061,6 +1061,30 @@ Configurati
#
options: [-Xmx2048m]
+ # Environment variables used in launch scripts.
+ #
+ environmentVariables:
+ # Included in all scripts
+ #
+ universal:
+ KEY: value
+ # Included in all non Windows scripts
+ #
+ unix:
+ KEY: value
+ # Included in all non Windows (except OSX) scripts
+ #
+ linux:
+ KEY: value
+ # Included only in OSX scripts
+ #
+ osx:
+ KEY: value
+ # Included in Windows scripts
+ #
+ windows:
+ KEY: value
+
# Maven coordinates: groupId.
# If left undefined, will use `#{project.java.groupId}`.
#
@@ -1381,6 +1405,28 @@ Configurati
#
java.options = ["-Xmx2048m"]
+ # Environment variables used in launch scripts.
+
+ # Included in all scripts
+ #
+ java.environmentVariables.universal.KEY = "value"
+
+ # Included in all non Windows scripts
+ #
+ java.environmentVariables.unix.KEY = "value"
+
+ # Included in all non Windows (except OSX) scripts
+ #
+ java.environmentVariables.linux.KEY = "value"
+
+ # Included only in OSX scripts
+ #
+ java.environmentVariables.osx.KEY = "value"
+
+ # Included in Windows scripts
+ #
+ java.environmentVariables.windows.KEY = "value"
+
# Maven coordinates: groupId.
# If left undefined, will use `#{project.java.groupId}`.
#
@@ -1728,6 +1774,36 @@ Configurati
//
"options": ["-Xmx2048m"],
+ // Environment variables used in launch scripts.
+ //
+ "environmentVariables": {
+ // Included in all scripts
+ //
+ "universal": {
+ "KEY": "value"
+ },
+ // Included in all non Windows scripts
+ //
+ "unix": {
+ "KEY": "value"
+ },
+ // Included in all non Windows (except OSX) scripts
+ //
+ "linux": {
+ "KEY": "value"
+ },
+ // Included only in OSX scripts
+ //
+ "osx": {
+ "KEY": "value"
+ },
+ // Included in Windows scripts
+ //
+ "windows": {
+ "KEY": "value"
+ }
+ },
+
// Maven coordinates: groupId.
// If left undefined, will use `#{project.java.groupId}`.
//
@@ -2192,6 +2268,48 @@ Configurati
-->
<options>-Xmx2048m</options>
+ <!--
+ Environment variables used in launch scripts.
+
+ -->
+ <environmentVariables>
+ <!--
+ Included in all scripts
+
+ -->
+ <universal>
+ <KEY>value</KEY>
+ </universal>
+ <!--
+ Included in all non Windows scripts
+
+ -->
+ <unix>
+ <KEY>value</KEY>
+ </unix>
+ <!--
+ Included in all non Windows (except OSX) scripts
+
+ -->
+ <linux>
+ <KEY>value</KEY>
+ </linux>
+ <!--
+ Included only in OSX scripts
+
+ -->
+ <osx>
+ <KEY>value</KEY>
+ </osx>
+ <!--
+ Included in Windows scripts
+
+ -->
+ <windows>
+ <KEY>value</KEY>
+ </windows>
+ </environmentVariables>
+
<!--
Maven coordinates>groupId.
If left undefined, will use `#{project.java.groupId}`.
@@ -2633,6 +2751,26 @@ Configurati
//
options = ['-Xmx2048m']
+ // Environment variables used in launch scripts.
+ //
+ environmentVariables {
+ // Included in all scripts
+ //
+ universal('KEY', 'value')
+ // Included in all non Windows scripts
+ //
+ unix('KEY', 'value')
+ // Included in all non Windows (except OSX) scripts
+ //
+ linux('KEY', 'value')
+ // Included only in OSX scripts
+ //
+ osx('KEY', 'value')
+ // Included in Windows scripts
+ //
+ windows('KEY', 'value')
+ }
+
// Maven coordinates = groupId.
// If left undefined, will use `#{project.java.groupId}`.
//
diff --git a/guide/early-access/reference/catalog/github.html b/guide/early-access/reference/catalog/github.html
index e005fc322..f21cafde8 100644
--- a/guide/early-access/reference/catalog/github.html
+++ b/guide/early-access/reference/catalog/github.html
@@ -925,6 +925,16 @@ Configurati
#
deployables: true
+ # A set of artifacts to include.
+ #
+ includes:
+ - '**/*.zip'
+
+ # A set of artifacts to exclude.
+ #
+ excludes:
+ - '**/*.asc'
+
# Additional properties used when evaluating templates.
#
extraProperties:
@@ -945,25 +955,33 @@ Configurati
#
active = "ALWAYS"
- # Name of the attestation file.
- # Defaults to `{{projectName}}-{{projectEffectiveVersion}}`.
- #
- attestationName = "app-all-{{projectVersion}}"
+ # Name of the attestation file.
+ # Defaults to `{{projectName}}-{{projectEffectiveVersion}}`.
+ #
+ attestationName = "app-all-{{projectVersion}}"
+
+ # Check distribution artifacts.
+ # Defaults to `true`.
+ #
+ artifacts = true
+
+ # Check files.
+ # Defaults to `true`.
+ #
+ files = true
- # Check distribution artifacts.
- # Defaults to `true`.
- #
- artifacts = true
+ # Check deployable artifacts.
+ # Defaults to `true`.
+ #
+ deployables = true
- # Check files.
- # Defaults to `true`.
- #
- files = true
+ # A set of artifacts to include.
+ #
+ includes = ["**/*.zip"]
- # Check deployable artifacts.
- # Defaults to `true`.
- #
- deployables = true
+ # A set of artifacts to exclude.
+ #
+ excludes = ["**/*.asc"]
# Additional properties used when evaluating templates.
#
@@ -1006,6 +1024,14 @@ Configurati
//
"deployables": true,
+ // A set of artifacts to include.
+ //
+ "includes": ["**/*.zip"],
+
+ // A set of artifacts to exclude.
+ //
+ "excludes": ["**/*.asc"],
+
// Additional properties used when evaluating templates.
//
"extraProperties": {
@@ -1067,6 +1093,22 @@ Configurati
-->
<deployables>true</deployables>
+ <!--
+ A set of artifacts to include.
+
+ -->
+ <includes>
+ <include>**/*.zip</include>
+ </includes>
+
+ <!--
+ A set of artifacts to exclude.
+
+ -->
+ <excludes>
+ <exclude>**/*.asc</exclude>
+ </excludes>
+
<!--
Additional properties used when evaluating templates.
@@ -1117,6 +1159,14 @@ Configurati
//
deployables = true
+ // A set of artifacts to include.
+ //
+ includes('**/*.zip')
+
+ // A set of artifacts to exclude.
+ //
+ exclude('**/*.asc')
+
// Additional properties used when evaluating templates.
// Key will be capitalized and prefixed with `github`, i.e, `githubFoo`.
//
diff --git a/guide/early-access/reference/catalog/slsa.html b/guide/early-access/reference/catalog/slsa.html
index a40105098..8a4d68f5b 100644
--- a/guide/early-access/reference/catalog/slsa.html
+++ b/guide/early-access/reference/catalog/slsa.html
@@ -915,6 +915,16 @@ Configurati
#
deployables: true
+ # A set of artifacts to include.
+ #
+ includes:
+ - '**/*.zip'
+
+ # A set of artifacts to exclude.
+ #
+ excludes:
+ - '**/*.asc'
+
# Additional properties used when evaluating templates.
#
extraProperties:
@@ -935,25 +945,33 @@ Configurati
#
active = "ALWAYS"
- # Name of the attestation file.
- # Defaults to `{{projectName}}-{{projectEffectiveVersion}}`.
- #
- attestationName = "app-all-{{projectVersion}}"
+ # Name of the attestation file.
+ # Defaults to `{{projectName}}-{{projectEffectiveVersion}}`.
+ #
+ attestationName = "app-all-{{projectVersion}}"
+
+ # Check distribution artifacts.
+ # Defaults to `true`.
+ #
+ artifacts = true
+
+ # Check files.
+ # Defaults to `true`.
+ #
+ files = true
- # Check distribution artifacts.
- # Defaults to `true`.
- #
- artifacts = true
+ # Check deployable artifacts.
+ # Defaults to `true`.
+ #
+ deployables = true
- # Check files.
- # Defaults to `true`.
- #
- files = true
+ # A set of artifacts to include.
+ #
+ includes = ["**/*.zip"]
- # Check deployable artifacts.
- # Defaults to `true`.
- #
- deployables = true
+ # A set of artifacts to exclude.
+ #
+ excludes = ["**/*.asc"]
# Additional properties used when evaluating templates.
#
@@ -996,6 +1014,14 @@ Configurati
//
"deployables": true,
+ // A set of artifacts to include.
+ //
+ "includes": ["**/*.zip"],
+
+ // A set of artifacts to exclude.
+ //
+ "excludes": ["**/*.asc"],
+
// Additional properties used when evaluating templates.
//
"extraProperties": {
@@ -1057,6 +1083,22 @@ Configurati
-->
<deployables>true</deployables>
+ <!--
+ A set of artifacts to include.
+
+ -->
+ <includes>
+ <include>**/*.zip</include>
+ </includes>
+
+ <!--
+ A set of artifacts to exclude.
+
+ -->
+ <excludes>
+ <exclude>**/*.asc</exclude>
+ </excludes>
+
<!--
Additional properties used when evaluating templates.
@@ -1107,6 +1149,14 @@ Configurati
//
deployables = true
+ // A set of artifacts to include.
+ //
+ includes('**/*.zip')
+
+ // A set of artifacts to exclude.
+ //
+ exclude('**/*.asc')
+
// Additional properties used when evaluating templates.
// Key will be capitalized and prefixed with `slsa`, i.e, `slsaFoo`.
//
diff --git a/guide/early-access/reference/project.html b/guide/early-access/reference/project.html
index 7f5da16f9..cb5172c63 100644
--- a/guide/early-access/reference/project.html
+++ b/guide/early-access/reference/project.html
@@ -1027,6 +1027,30 @@ Configurati
#
multiProject: false
+ # Environment variables used in launch scripts.
+ #
+ environmentVariables:
+ # Included in all scripts
+ #
+ universal:
+ KEY: value
+ # Included in all non Windows scripts
+ #
+ unix:
+ KEY: value
+ # Included in all non Windows (except OSX) scripts
+ #
+ linux:
+ KEY: value
+ # Included only in OSX scripts
+ #
+ osx:
+ KEY: value
+ # Included in Windows scripts
+ #
+ windows:
+ KEY: value
+
# Additional properties used when evaluating templates.
#
extraProperties:
@@ -1239,6 +1263,28 @@ Configurati
#
java.multiProject = false
+ # Environment variables used in launch scripts.
+
+ # Included in all scripts
+ #
+ java.environmentVariables.universal.KEY = "value"
+
+ # Included in all non Windows scripts
+ #
+ java.environmentVariables.unix.KEY = "value"
+
+ # Included in all non Windows (except OSX) scripts
+ #
+ java.environmentVariables.linux.KEY = "value"
+
+ # Included only in OSX scripts
+ #
+ java.environmentVariables.osx.KEY = "value"
+
+ # Included in Windows scripts
+ #
+ java.environmentVariables.windows.KEY = "value"
+
# Additional properties used when evaluating templates.
#
java.extraProperties.foo = "bar"
@@ -1462,6 +1508,36 @@ Configurati
//
"multiProject": false,
+ // Environment variables used in launch scripts.
+ //
+ "environmentVariables": {
+ // Included in all scripts
+ //
+ "universal": {
+ "KEY": "value"
+ },
+ // Included in all non Windows scripts
+ //
+ "unix": {
+ "KEY": "value"
+ },
+ // Included in all non Windows (except OSX) scripts
+ //
+ "linux": {
+ "KEY": "value"
+ },
+ // Included only in OSX scripts
+ //
+ "osx": {
+ "KEY": "value"
+ },
+ // Included in Windows scripts
+ //
+ "windows": {
+ "KEY": "value"
+ }
+ },
+
// Additional properties used when evaluating templates.
//
"extraProperties": {
@@ -1792,6 +1868,48 @@ Configurati
-->
<multiProject>false</multiProject>
+ <!--
+ Environment variables used in launch scripts.
+
+ -->
+ <environmentVariables>
+ <!--
+ Included in all scripts
+
+ -->
+ <universal>
+ <KEY>value</KEY>
+ </universal>
+ <!--
+ Included in all non Windows scripts
+
+ -->
+ <unix>
+ <KEY>value</KEY>
+ </unix>
+ <!--
+ Included in all non Windows (except OSX) scripts
+
+ -->
+ <linux>
+ <KEY>value</KEY>
+ </linux>
+ <!--
+ Included only in OSX scripts
+
+ -->
+ <osx>
+ <KEY>value</KEY>
+ </osx>
+ <!--
+ Included in Windows scripts
+
+ -->
+ <windows>
+ <KEY>value</KEY>
+ </windows>
+ </environmentVariables>
+
<!--
Additional properties used when evaluating templates.
@@ -2063,6 +2181,26 @@ Configurati
//
multiProject = false
+ // Environment variables used in launch scripts.
+ //
+ environmentVariables {
+ // Included in all scripts
+ //
+ universal('KEY', 'value')
+ // Included in all non Windows scripts
+ //
+ unix('KEY', 'value')
+ // Included in all non Windows (except OSX) scripts
+ //
+ linux('KEY', 'value')
+ // Included only in OSX scripts
+ //
+ osx('KEY', 'value')
+ // Included in Windows scripts
+ //
+ windows('KEY', 'value')
+ }
+
// Additional properties used when evaluating templates.
// Key will be capitalized and prefixed with `java`, i.e, `javaFoo`.
//
diff --git a/sitemap.xml b/sitemap.xml
index 6b689a0d5..c6c7b2f81 100644
--- a/sitemap.xml
+++ b/sitemap.xml
@@ -2,1534 +2,1534 @@
https://jreleaser.org/guide/latest/checklist.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/artifacts.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/distributions/binary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/distributions/flat-binary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/distributions/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/distributions/java-binary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/distributions/jlink.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/distributions/native-image.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/distributions/native-package.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/distributions/single-jar.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/templates/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/templates/mustache.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/templates/templates.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/concepts/workflow.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/azure-pipelines.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/buddy.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/buildkite.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/circle-ci.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/cirrus-ci.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/codefresh.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/codeship.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/dagger.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/drone.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/github-actions.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/gitlab-ci.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/jenkins.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/jetbrains-space.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/semaphore.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/teamcity.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/travis-ci.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/wercker.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/continuous-integration/woodpecker.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/contributing.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/java/binary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/java/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/java/java-binary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/java/jlink.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/java/jpackage.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/java/single-jar.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/jlink/cross-platform-jlink.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/jlink/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/jlink/quarkus-cli-app-jlink.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/jreleaser.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/maven/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/maven/maven-central.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/maven/staging-artifacts.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/auto-config-release.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/ballerina.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/cpp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/crystal.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/csharp-cross-platform.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/elixir.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/github-summary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/haskell.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/perl.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/rust-cross-platform.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/simple-release.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/swift.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/miscellaneous/zig.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/native-image/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/native-image/micronaut-cli-app.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/native-image/quarkus-cli-app.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/examples/native-image/springboot-cli-app.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/extensions/authoring-extensions.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/extensions/extension-points/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/extensions/extension-points/mustache.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/extensions/extension-points/workflow-listener.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/extensions/extensions/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/extensions/extensions/jreleaser-cdevents.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/extensions/extensions/jreleaser-jfr.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/extensions/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/faq.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/install.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/integrations.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/links.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/provenance.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/quick-start/ant.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/quick-start/cli.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/quick-start/gradle.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/quick-start/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/quick-start/maven.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/article.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/bluesky.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/discord.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/discourse.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/discussions.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/gitter.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/google-chat.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/http.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/linkedin.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/mail.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/mastodon.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/mattermost.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/opencollective.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/sdkman.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/slack.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/smtp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/teams.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/telegram.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/twitter.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/webhooks.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/announce/zulip.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/assemble/archive.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/assemble/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/assemble/java-archive.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/assemble/jlink.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/assemble/jpackage.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/assemble/native-image.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/catalog/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/catalog/sbom/cyclonedx.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/catalog/sbom/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/catalog/sbom/syft.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/catalog/slsa.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/catalog/swid.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/checksum.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/deploy/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/deploy/maven/artifactory.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/deploy/maven/azure.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/deploy/maven/gitea.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/deploy/maven/github.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/deploy/maven/gitlab.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/deploy/maven/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/deploy/maven/maven-central.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/deploy/maven/nexus2.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/distributions.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/download/ftp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/download/http.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/download/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/download/scp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/download/sftp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/environment.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/extensions.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/files.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/hooks/command.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/hooks/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/hooks/script.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/name-templates.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/appimage.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/asdf.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/chocolatey.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/docker.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/flatpak.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/gofish.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/homebrew.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/jbang.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/jib.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/macports.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/scoop.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/sdkman.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/snap.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/spec.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/packagers/winget.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/platform.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/project.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/release/changelog.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/release/codeberg.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/release/generic.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/release/gitea.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/release/github.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/release/gitlab.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/release/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/signing.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/upload/artifactory.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/upload/ftp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/upload/gitea.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/upload/gitlab.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/upload/http.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/upload/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/upload/s3.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/upload/scp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/reference/upload/sftp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/release-history.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/schema.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/sponsors.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/tools/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/tools/jdks-gradle.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/tools/jdks-maven.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/tools/jreleaser-ant.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/tools/jreleaser-cli.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/tools/jreleaser-docker.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/tools/jreleaser-gradle.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/tools/jreleaser-maven.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/latest/tools/jreleaser-tool-provider.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/checklist.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/artifacts.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/distributions/binary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/distributions/flat-binary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/distributions/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/distributions/java-binary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/distributions/jlink.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/distributions/native-image.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/distributions/native-package.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/distributions/single-jar.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/templates/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/templates/mustache.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/templates/templates.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/concepts/workflow.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/azure-pipelines.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/buddy.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/buildkite.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/circle-ci.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/cirrus-ci.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/codefresh.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/codeship.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/dagger.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/drone.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/github-actions.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/gitlab-ci.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/jenkins.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/jetbrains-space.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/semaphore.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/teamcity.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/travis-ci.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/wercker.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/continuous-integration/woodpecker.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/contributing.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/java/binary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/java/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/java/java-binary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/java/jlink.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/java/jpackage.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/java/single-jar.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/jlink/cross-platform-jlink.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/jlink/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/jlink/quarkus-cli-app-jlink.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/jreleaser.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/maven/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/maven/maven-central.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/maven/staging-artifacts.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/auto-config-release.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/ballerina.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/cpp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/crystal.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/csharp-cross-platform.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/elixir.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/github-summary.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/haskell.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/perl.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/rust-cross-platform.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/simple-release.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/swift.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/miscellaneous/zig.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/native-image/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/native-image/micronaut-cli-app.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/native-image/quarkus-cli-app.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/examples/native-image/springboot-cli-app.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/extensions/authoring-extensions.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/extensions/extension-points/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/extensions/extension-points/mustache.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/extensions/extension-points/workflow-listener.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/extensions/extensions/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/extensions/extensions/jreleaser-cdevents.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/extensions/extensions/jreleaser-jfr.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/extensions/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/faq.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/install.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/integrations.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/links.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/provenance.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/quick-start/ant.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/quick-start/cli.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/quick-start/gradle.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/quick-start/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/quick-start/maven.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/article.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/bluesky.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/discord.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/discourse.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/discussions.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/gitter.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/google-chat.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/http.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/linkedin.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/mail.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/mastodon.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/mattermost.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/opencollective.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/sdkman.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/slack.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/smtp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/teams.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/telegram.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/twitter.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/webhooks.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/announce/zulip.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/assemble/archive.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/assemble/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/assemble/java-archive.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/assemble/jlink.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/assemble/jpackage.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/assemble/native-image.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/catalog/github.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/catalog/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/catalog/sbom/cyclonedx.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/catalog/sbom/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/catalog/sbom/syft.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/catalog/slsa.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/catalog/swid.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/checksum.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/deploy/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/deploy/maven/artifactory.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/deploy/maven/azure.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/deploy/maven/gitea.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/deploy/maven/github.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/deploy/maven/gitlab.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/deploy/maven/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/deploy/maven/maven-central.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/deploy/maven/nexus2.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/distributions.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/download/ftp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/download/http.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/download/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/download/scp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/download/sftp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/environment.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/extensions.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/files.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/hooks/command.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/hooks/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/hooks/script.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/name-templates.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/appimage.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/asdf.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/chocolatey.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/docker.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/flatpak.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/gofish.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/homebrew.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/jbang.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/jib.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/macports.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/scoop.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/sdkman.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/snap.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/spec.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/packagers/winget.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/platform.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/project.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/release/changelog.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/release/codeberg.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/release/generic.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/release/gitea.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/release/github.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/release/gitlab.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/release/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/signing.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/upload/artifactory.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/upload/ftp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/upload/gitea.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/upload/gitlab.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/upload/http.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/upload/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/upload/s3.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/upload/scp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/reference/upload/sftp.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/release-history.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/schema.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/sponsors.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/tools/index.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/tools/jdks-gradle.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/tools/jdks-maven.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/tools/jreleaser-ant.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/tools/jreleaser-cli.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/tools/jreleaser-docker.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/tools/jreleaser-gradle.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/tools/jreleaser-maven.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z
https://jreleaser.org/guide/early-access/tools/jreleaser-tool-provider.html
-2024-06-05T17:05:26.669Z
+2024-06-07T14:24:30.112Z