Skip to main content
added 78 characters in body
Source Link
Cherry
  • 32.8k
  • 70
  • 234
  • 384

For any properties you need to change on the command line, prepend them with "set ", and wrap them in quotes.

For your exampleExample for Windows:

sbt "set test in assembly := {}" clean assembly

Example for Mac:

sbt 'set test in assembly := {}' clean assembly

For any properties you need to change on the command line, prepend them with "set ", and wrap them in quotes.

For your example:

sbt "set test in assembly := {}" clean assembly

For any properties you need to change on the command line, prepend them with "set ", and wrap them in quotes.

Example for Windows:

sbt "set test in assembly := {}" clean assembly

Example for Mac:

sbt 'set test in assembly := {}' clean assembly
For windows users, switched from "single quotes" to just "quotes"
Source Link
kshakir
  • 2.2k
  • 1
  • 16
  • 9

For any properties you need to change on the command line, prepend them with "set ", and wrap them in single quotes.

For your example:

sbt 'set"set test in assembly := {}'" clean assembly

For any properties you need to change on the command line, prepend them with "set ", and wrap them in single quotes.

For your example:

sbt 'set test in assembly := {}' clean assembly

For any properties you need to change on the command line, prepend them with "set ", and wrap them in quotes.

For your example:

sbt "set test in assembly := {}" clean assembly
Source Link
kshakir
  • 2.2k
  • 1
  • 16
  • 9

For any properties you need to change on the command line, prepend them with "set ", and wrap them in single quotes.

For your example:

sbt 'set test in assembly := {}' clean assembly