#!/bin/sh

VERSION=__PLUGIN_VERSION_PLACEHOLDER__

if [ "$1" != '--all' ]; then
    export LOC=true
else
    export LOC=false
fi

MAVEN_ARGS="-Dcactus.scope=all \
    -Dcactus.local=$LOC \
    -Dcactus.file.extension=java \
    com.telenav.cactus:cactus-maven-plugin:${VERSION}:last-change"

# The run_maven function is generated by InstallScriptsMojo
run_maven
