1 Star 2 Fork 0

umdol/Recaf

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build 409 Bytes
一键复制 编辑 原始数据 按行查看 历史
Col-E 提交于 2021-04-15 08:36 +08:00 . Simplify build process
#!/bin/bash
set -e
echo '==========================='
echo 'Build Modes'
echo '------'
echo ' 1. Build with tests (Slow)'
echo ' 2. Build with no tests (Fast)'
echo '------'
echo ' 3. Exit'
echo '==========================='
echo -n 'Enter build mode: '
read mode
if [[ $mode == '1' ]]; then
./mvnw clean package;
elif [[ $mode == '2' ]]; then
./mvnw clean package -Dmaven.test.skip -Dcheckstyle.skip;
fi;
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/umdol/Recaf.git
git@gitee.com:umdol/Recaf.git
umdol
Recaf
Recaf
master

搜索帮助