ChestShop-3/install_dependency_to_repo.sh
Acrobot a5bfa86bca Mavenized the project
Switched the project to Maven - you're now able to easily build
ChestShop.
2013-03-08 20:31:15 +01:00

16 lines
520 B
Bash

#!/bin/sh
echo "[Dependency installer]"
read -p "What is your dependency's file name? " filename
if [ "$filename" = "" ]; then
return
fi
read -p "What is your dependency's group ID? " groupID
read -p "What is your dependency's artifact ID? " artifactID
read -p "What is your dependency's version? " version
mvn install:install-file -DlocalRepositoryPath=repo -DcreateChecksum=true -Dpackaging=jar -Dfile=$filename -DgroupId=$groupID -DartifactId=$artifactID -Dversion=$version
echo "[Dependency installed!]"