2021-04-06 07:07:42 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# Groovy requires JAVA_HOME to be set
|
|
|
|
export JAVA_HOME=$PWD/java
|
2021-04-27 02:18:52 +02:00
|
|
|
|
|
|
|
# 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
|