mirror of
https://github.com/revanced/jadb.git
synced 2025-02-11 01:26:47 +01:00
8 lines
150 B
Bash
8 lines
150 B
Bash
|
#!/bin/sh
|
||
|
set -eu
|
||
|
|
||
|
docker run -it --rm \
|
||
|
-v "$(pwd)":/opt/maven \
|
||
|
-w /opt/maven maven:3.5-jdk-7 \
|
||
|
mvn clean install
|