Skip to content

Commit 21ecc99

Browse files
Add build script
1 parent 7bbe931 commit 21ecc99

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

build.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/bin/bash
2+
curl http://www-us.apache.org/dist/maven/maven-3/3.5.3/binaries/apache-maven-3.5.3-bin.tar.gz -o maven.tar.gz
3+
tar xzf maven.tar.gz
4+
export MVNROOT=$PWD
5+
export PATH=$PWD/apache-maven-3.5.3/bin:$PATH
6+
7+
# Maven install
8+
mvn clean
9+
mvn package

0 commit comments

Comments
 (0)