#!/bin/bash

# Groovy requires JAVA_HOME to be set
export JAVA_HOME=$PWD/java

# GROOVY_HOME needed to get the groovy libs
export GROOVY_HOME=$PWD/groovy-3.0.7

# Add java and groovy binaries to the path
export PATH=$PWD/java/bin:$PWD/groovy-3.0.7/bin:$PATH