使用一个不在maven库中的jar作为依赖
libraryDependencies += "slinky" % "slinky" % "2.1" from "http:// slinky2.googlecode.com/svn/artifacts/2.1/slinky.jar"
在sbt中声明依赖时同时下载源代码
libraryDependencies += "org.apache.felix" % "org.apache.felix.framework" % "1.8.0" withSources() withJavadoc()
withSources()
是说要下载源代码jar,withJavadoc()
是说要下载文档jar。
添加全局镜像库
在~/.sbt/
下添加一个repositories
文件,里面内容如下:
[repositories] local osc: http://maven.oschina.net/content/groups/public/ typesafe: http://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/(scala_[scalaVersion]/)(sbt_[sbtVersion]/)[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly sonatype-oss-releases maven-central sonatype-oss-snapshots
play Application secret not set
=> PlayFramework 生产模式下 play Application secret not set 那点事
据说在开发模式下,play程序自动停止也和这有点关系。
时间: 2024-11-06 12:21:41