Skip to content

Releases: parttimenerd/execjar

Release 0.1.1

03 Jan 19:20

Choose a tag to compare

Release 0.1.1

Changed

  • Performance improvements by not calling java -version

Added

  • Test example project in the CI

Installation

Maven

<dependency>
    <groupId>me.bechberger</groupId>
    <artifactId>execjar</artifactId>
    <version>0.1.1</version>
</dependency>

Direct Download

Download from the assets below:

  • execjar.jar - Executable JAR file (requires Java 11+)
  • execjar - Standalone launcher script (Unix/Linux/macOS)

Usage:

# Using the script (recommended for Unix-like systems)
chmod +x execjar
./execjar myapp.jar

# Using the JAR directly
java -jar execjar.jar myapp.jar

Release 0.1.0

02 Jan 19:45

Choose a tag to compare

Release 0.1.0

  • Initial implementation

Installation

Maven

<dependency>
    <groupId>me.bechberger</groupId>
    <artifactId>execjar</artifactId>
    <version>0.1.0</version>
</dependency>

Direct Download

Download from the assets below:

  • execjar.jar - Executable JAR file (requires Java 11+)
  • execjar - Standalone launcher script (Unix/Linux/macOS)

Usage:

# Using the script (recommended for Unix-like systems)
chmod +x execjar
./execjar myapp.jar

# Using the JAR directly
java -jar execjar.jar myapp.jar