mirror of
https://github.com/ChestShop-authors/ChestShop-3.git
synced 2024-10-31 23:59:37 +01:00
16 lines
525 B
Bash
16 lines
525 B
Bash
#!/bin/bash
|
|
|
|
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!]" |