MVN

net.sf.beezle.maven.plugins : application

Maven & Gradle

Nov 28, 2011

Maven Application Plugin · Generates an application file. An application file is a single file containing your entire application, it's all you need to distribute or run the application. Technically, an application file is a Bash shell script with an appended executable jar file. You can invoke it directly or you can pass it as an argument to java -jar. You can rename it without breaking the application.

<plugin>
    <groupId>net.sf.beezle.maven.plugins</groupId>
    <artifactId>application</artifactId>
    <version>1.3.5</version>
</plugin>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of net.sf.beezle.maven.plugins : application to add to Maven - Latest Versions:

  • Latest Stable: 1.3.5

All Versions

Choose a version of net.sf.beezle.maven.plugins : application to add to Maven - All Versions:

Version Vulnerabilities Updated
1.3.x
application-1.3.5
application-1.3.4
application-1.3.3
application-1.3.2
application-1.3.1
application-1.3.0

How to add a plugin to Maven

Add the maven plugin to the pom.xml file information in this tag as follows:

<plugin>
    <groupId>net.sf.beezle.maven.plugins</groupId>
    <artifactId>application</artifactId>
    <version>1.3.5</version>
</plugin>