Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am ykid on github.
  • I am p_david_c (https://keybase.io/p_david_c) on keybase.
  • I have a public key ASAVAn2LcnWoaIoTHLRJE23c-qvcQh3qg061cODxs96Eygo

To claim this, I am signing this object:

@Ykid
Ykid / Scala-SBT-Pass-JVM-Options-To-Test.md
Created April 18, 2018 09:10 — forked from padurean/Scala-SBT-Pass-JVM-Options-To-Test.md
SBT, Scala - Pass JVM options when running tests

Use javaOptions sbt setting in Build.scala or build.sbt to pass jvm options to tests e.g.

  • statically:
javaOptions in Test ++= Seq("-Dconfig.file=conf/staging.conf")

or