Skip to content

Commit de943fe

Browse files
committed
1 parent d60cee2 commit de943fe

File tree

7 files changed

+855
-1
lines changed

7 files changed

+855
-1
lines changed

docs/modules/ROOT/pages/integrations.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Files may be downloaded from the following services:
1616
Distributions may be assembled using your build tool of choice, also with any of the following assemblers:
1717

1818
* xref:reference:assemble/archive.adoc[]
19+
* xref:reference:assemble/deb.adoc[]
1920
* xref:reference:assemble/java-archive.adoc[]
2021
* xref:reference:assemble/jlink.adoc[]
2122
* xref:reference:assemble/jpackage.adoc[]

docs/modules/reference/nav.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
*** xref:announce/zulip.adoc[]
2424
** xref:assemble/index.adoc[]
2525
*** xref:assemble/archive.adoc[]
26+
*** xref:assemble/deb.adoc[]
2627
*** xref:assemble/java-archive.adoc[]
2728
*** xref:assemble/jlink.adoc[]
2829
*** xref:assemble/jpackage.adoc[]

docs/modules/reference/pages/assemble/archive.adoc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -420,6 +420,7 @@ YAML::
420420
----
421421
project:
422422
version: 1.0.0
423+
name: app
423424
description: Sample application
424425
authors:
425426
- Duke
@@ -448,6 +449,7 @@ TOML::
448449
----
449450
[project]
450451
version = "1.0.0"
452+
name = "app"
451453
description = "Sample application"
452454
authors = [ "Duke" ]
453455
inceptionYear = "2020"
@@ -473,6 +475,7 @@ JSON::
473475
{
474476
"project": {
475477
"version": "1.0.0",
478+
"name": "app",
476479
"description": "Sample application",
477480
"authors": [ "Duke" ],
478481
"inceptionYear": "2020"
@@ -508,6 +511,7 @@ Maven::
508511
<jreleaser>
509512
<project>
510513
<version>1.0.0</version>
514+
<name>app</name>
511515
<description>Sample application</description>
512516
<authors>Duke</authors>
513517
<inceptionYear>2020</inceptionYear>
@@ -548,6 +552,7 @@ Gradle::
548552
jreleaser {
549553
project {
550554
version = '1.0.0'
555+
name = 'app'
551556
description = 'Sample application'
552557
author('Duke')
553558
inceptionYear: '2020'

0 commit comments

Comments
 (0)