File tree Expand file tree Collapse file tree 7 files changed +855
-1
lines changed Expand file tree Collapse file tree 7 files changed +855
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ Files may be downloaded from the following services:
1616Distributions 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[]
Original file line number Diff line number Diff line change 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[]
Original file line number Diff line number Diff line change @@ -420,6 +420,7 @@ YAML::
420420----
421421project:
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::
548552jreleaser {
549553 project {
550554 version = '1.0.0'
555+ name = 'app'
551556 description = 'Sample application'
552557 author('Duke')
553558 inceptionYear: '2020'
You can’t perform that action at this time.
0 commit comments