Skip to content

Compile into a JAR file

rabin-io edited this page Sep 8, 2020 · 5 revisions

Using Fedora and podman (or Docker)

based on https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html

  1. Clone the repo and cd into it git clone ... && cd ...

  2. run the maven image podman run -it --rm -v $(pwd):/app docker.io/library/maven /bin/bash

  3. In the container cd into /app and run mvn package

You should have the compiled lib under the target folder.

Clone this wiki locally