2024-12-22 12:18:57 +01:00
|
|
|
# mavor
|
|
|
|
|
2024-12-23 12:42:45 +01:00
|
|
|
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
|
|
|
|
```
|