Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add build instructions #1

Open
wants to merge 1 commit into
base: sifis-home
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,19 @@ The repo on GitHub at [https://github.com/sifis-home/usage-control](https://gith

Being a push mirror, all the changes have to be done at the repository hosted on the GitLab instance.

# Building

You need Java8 and [maven](https://maven.apache.org), you may install it using [sdkman](https://sdkman.io):

```sh
# Pick a java8 distribution
$ sdk list java | grep 8.0
$ sdk install java 8.0.{minor}-{dist}
# The latest maven is fine to use
$ sdk install maven
```

Then you may build the package normally
```sh
$ mvn clean package
```