Skip to content

Small library which aims at resolving the command used to start the application

License

Notifications You must be signed in to change notification settings

Furrrlo/JLaunchCmd

Repository files navigation

JLaunchCmd

Build Maven Central

Small library which aims at resolving the command used to start the application.

Getting Started

Maven

<dependency>
    <groupId>io.github.furrrlo</groupId>
    <artifactId>JLaunchCmd</artifactId>
    <version>1.0</version>
</dependency>

Gradle

dependencies {
    implementation("io.github.furrrlo:JLaunchCmd:1.0")
}

Usage

import io.github.furrrlo.jlaunchcmd.JLaunchCmd;

import java.util.Arrays;

class Main {
    public static void main(String[] args) {
        final String[] launchCmd = JLaunchCmd.create().getLaunchCommand();
        System.out.println(Arrays.toString(launchCmd));
    }
}

About

Small library which aims at resolving the command used to start the application

Resources

License

Stars

Watchers

Forks

Packages

No packages published