The current repo belongs to Paused status, and some functions are restricted. For details, please refer to the description of repo status
1 Star 0 Fork 7.8K

zhangjianbin / hutool
Paused

forked from dromara / hutool 
Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
hutool.sh 650 Bytes
Copy Edit Raw Blame History
Looly authored 2019-08-14 10:02 . clean history
#!/bin/bash
# Help info function
help(){
echo "--------------------------------------------------------------------------"
echo ""
echo "usage: ./hutool.sh [install | doc | pack]"
echo ""
echo "-install Install Hutool to your local Maven repository."
echo "-doc Generate Java doc api for Hutool, you can see it in target dir"
echo "-pack Make jar package by Maven"
echo ""
echo "--------------------------------------------------------------------------"
}
# Start
./bin/logo.sh
case "$1" in
'install')
bin/install.sh
;;
'doc')
bin/javadoc.sh
;;
'pack')
bin/package.sh
;;
*)
help
esac
Java
1
https://gitee.com/ZJB2020/hutool.git
git@gitee.com:ZJB2020/hutool.git
ZJB2020
hutool
hutool
v5-master

Search