# mavor download a maven artifact and all its dependencies as zip ## Environment Variables all environemnt variables are required * `MAVOR_MAVEN_EXECUTABLE`: path to the maven executable, e.g. `/usr/bin/mvn` * `MAVOR_TEMP_DIR`: path to a readable and writeable directory to temporarily store files, e.g. `/home/damage/Temp` ## Development To avoid setting environment variables during devleopment, create `src/main/resources/development.properties` with content like: ``` MAVOR_MAVEN_EXECUTABLE=/usr/bin/mvn MAVOR_TEMP_DIR=/home/damage/Temp ```