Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
aalmiray committed Dec 17, 2024
1 parent d60cee2 commit de943fe
Show file tree
Hide file tree
Showing 7 changed files with 855 additions and 1 deletion.
1 change: 1 addition & 0 deletions docs/modules/ROOT/pages/integrations.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Files may be downloaded from the following services:
Distributions may be assembled using your build tool of choice, also with any of the following assemblers:

* xref:reference:assemble/archive.adoc[]
* xref:reference:assemble/deb.adoc[]
* xref:reference:assemble/java-archive.adoc[]
* xref:reference:assemble/jlink.adoc[]
* xref:reference:assemble/jpackage.adoc[]
Expand Down
1 change: 1 addition & 0 deletions docs/modules/reference/nav.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
*** xref:announce/zulip.adoc[]
** xref:assemble/index.adoc[]
*** xref:assemble/archive.adoc[]
*** xref:assemble/deb.adoc[]
*** xref:assemble/java-archive.adoc[]
*** xref:assemble/jlink.adoc[]
*** xref:assemble/jpackage.adoc[]
Expand Down
5 changes: 5 additions & 0 deletions docs/modules/reference/pages/assemble/archive.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,7 @@ YAML::
----
project:
version: 1.0.0
name: app
description: Sample application
authors:
- Duke
Expand Down Expand Up @@ -448,6 +449,7 @@ TOML::
----
[project]
version = "1.0.0"
name = "app"
description = "Sample application"
authors = [ "Duke" ]
inceptionYear = "2020"
Expand All @@ -473,6 +475,7 @@ JSON::
{
"project": {
"version": "1.0.0",
"name": "app",
"description": "Sample application",
"authors": [ "Duke" ],
"inceptionYear": "2020"
Expand Down Expand Up @@ -508,6 +511,7 @@ Maven::
<jreleaser>
<project>
<version>1.0.0</version>
<name>app</name>
<description>Sample application</description>
<authors>Duke</authors>
<inceptionYear>2020</inceptionYear>
Expand Down Expand Up @@ -548,6 +552,7 @@ Gradle::
jreleaser {
project {
version = '1.0.0'
name = 'app'
description = 'Sample application'
author('Duke')
inceptionYear: '2020'
Expand Down
Loading

0 comments on commit de943fe

Please sign in to comment.