'\" t .\" Manual page created with latex2man on Fri Apr 30 15:50:05 2021 .\" NOTE: This file is generated, DO NOT EDIT. .de Vb .ft CW .nf .. .de Ve .ft R .fi .. .TH "CAPSULE\-NEXTFLOW" "1" "April 2021" "General Commands " "General Commands " .SH NAME .PP capsule\-nextflow \- packaging and development tool for JVM applications .PP .SH SYNOPSIS .PP .B capsule\-nextflow \fIjarFile\fP .PP .SH DESCRIPTION capsule\-nextflow allows one to create capsules, which are single executable JARs containing everything an application needs to run in the form of embedded files or as declarative metadata. It launches the application in the JAR file \fIjarFile\fP\&. This JAR file must contain the Capsule.class file, the JAR of the application to be run, and a META\-INF/MANIFEST.MF file mentioning Capsule as its Main\-Class and Premain\-Class, and the main class of the application to be run as its Application\-Class. The minimal Manifest file would contain .Vb Manifest\-Version: 1.0 Main\-Class: Capsule Premain\-Class: Capsule Application\-ID: test Application\-Version: 1.0 Application\-Class: path.to.main.Class .Ve where Application\-ID and Application\-Version fields are chosen by the user, and Application\-Class is the main class of the application. .PP .SH EXAMPLE .PP See in /usr/share/doc/capsule\-nextflow/examples\&. .PP .\" NOTE: This file is generated, DO NOT EDIT.