我很难logback从我的2.3.8试运行中排除.我尝试了许多排除规则,但似乎没有任何效果.我也在我的依赖树中找不到它.来自我的sbt文件的片段:
[...]
resolvers ++= Seq(
"Typesafe repository snapshots" at "http://repo.typesafe.com/typesafe/snapshots/",
"Typesafe repository releases" at "http://repo.typesafe.com/typesafe/releases/",
"Sonatype repo" at "https://oss.sonatype.org/content/groups/scala-tools/",
"Sonatype releases" at "https://oss.sonatype.org/content/repositories/releases",
"Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
"Sonatype staging" at "http://oss.sonatype.org/content/repositories/staging",
"Java.net Maven2 Repository" at "http://download.java.net/maven/2/",
"Twitter Repository" at "http://maven.twttr.com",
"Websudos releases" at "http://maven.websudos.co.uk/ext-release-local"
)
libraryDependencies ++= {
val phantomVersion = "1.5.0"
Seq(
"net.jpountz.lz4" % "lz4" % "1.3.0",
"org.xerial.snappy" % "snappy-java" % "1.1.1.6",
"com.websudos" %% "phantom-dsl" % phantomVersion,
"com.websudos" %% "phantom-testing" % phantomVersion % Test,
"org.scalatestplus" %% "play" …Run Code Online (Sandbox Code Playgroud) 我想禁用fullOptJS(生产模式)的源映射生成。拥有有关原始 Scala 源文件的所有信息并不总是合适的。
我没有找到任何合适的选项来完全禁用输出或类似的东西?是否有任何指向文档的链接,其中包含 scalajs sbt 插件可用的所有选项?
谢谢你的帮助