Skip to content

Installation

From GH releases

Get the pre-built JAR from the releases page and copy it to a location of your choice.

That's it.

Build from source

To build soap-cli from source, you need:

  • Java Development Kit (JDK) 17 or later
  • Apache Maven 3.8+ on your PATH

1. Clone the repository

git clone https://github.com/marcemv90/soap-cli.git
cd soap-cli

2. Build the executable JAR

mvn clean package

This produces a fat JAR at:

target/soap-cli.jar

3. Run soap-cli

java -jar target/soap-cli.jar --help

You should see the CLI help output.

Once built, you can copy target/soap-cli.jar anywhere you like and invoke it with java -jar.