1 Star 1 Fork 1

mefan/scalaj-http

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
sbt 481 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jon Hoffman 提交于 2014-10-23 15:27 . bumped dependency versions
#!/bin/sh
VERSION=0.13.6
LATEST=http://typesafe.artifactoryonline.com/typesafe/ivy-releases/org.scala-sbt/sbt-launch/${VERSION}/sbt-launch.jar
JAR=.sbtlib/sbt-launch-${VERSION}.jar
if [ ! -d .sbtlib ]; then
mkdir .sbtlib
fi
if [ ! -f ${JAR} ]; then
rm .sbtlib/*
echo "Fetching sbt"
curl --progress-bar ${LATEST} > ${JAR}
fi
java \
-Duser.timezone=UTC \
-Djava.awt.headless=true \
-Dfile.encoding=UTF-8 \
-XX:MaxPermSize=256m \
-Xmx1g \
-noverify \
-jar ${JAR} \
"$@"
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Scala
1
https://gitee.com/mefaso/scalaj-http.git
[email protected]:mefaso/scalaj-http.git
mefaso
scalaj-http
scalaj-http
mine

搜索帮助