반응형
How run sbt assembly command without tests from command line?
I have read questions: this and that. They suggest to modify sbt file. But I want run sbt clean assembly
without tests and do not modify sbt build files. Is it possible with sbt? In maven there is -DskipTest=true
parameter, is there analog for sbt?
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
반응형
'Nice programing' 카테고리의 다른 글
What is the cause of the Bad Request Error when submitting form in Flask application? (0) | 2020.10.21 |
---|---|
Standard to follow when writing git commit messages (0) | 2020.10.21 |
Does the order of members in a struct matter? (0) | 2020.10.21 |
Locking binary files using git version control system (0) | 2020.10.21 |
RunAs A different user when debugging in Visual Studio (0) | 2020.10.21 |