inital commit

This commit is contained in:
2016-12-04 10:41:37 +01:00
commit 256b278428
34 changed files with 2011 additions and 0 deletions

22
gradlew.sh Executable file
View File

@@ -0,0 +1,22 @@
#!/bin/bash
mkdir -p tmp
cd tmp
if ! test -d "gradle-2.0"; then
wget https://services.gradle.org/distributions/gradle-2.0-bin.zip
unzip gradle-2.0-bin.zip
fi
#echo setting environment
export GRADLE_HOME=`pwd`/gradle-2.0
#echo GRADLE_HOME=$GRADLE_HOME
export PATH=$PATH:$GRADLE_HOME/bin
#echo $PATH
cd ..
gradle --daemon $1 $2 $3 $4 $5 $6 $7