test: added project setup test description and resources for Java Sonargraph setup

This commit is contained in:
mlangkabel
2018-08-28 15:01:13 +02:00
parent db23d50614
commit 03c06e91e8
14 changed files with 119 additions and 1 deletions
@@ -0,0 +1,17 @@
#!/bin/bash
# get absolute path to parent directory of script
MY_PATH=`dirname "$0"`
if [[ "${MY_PATH}" != *\\* ]]
then
cd $MY_PATH
MY_PATH=`pwd`
fi
MY_PATH="${MY_PATH//\\//}"
WORKING_COPY_PATH=$MY_PATH/working_copy
echo "" >> $WORKING_COPY_PATH/src/foo/Bar.java
echo "Update Complete"