How to start external application from Scala?
|
|
|||||||||
|
|
|
Use the Process library, which was a part of SBT but is now being separated from it. You can find it here in the Scala Tools repository. With that, it can be as simple as:
|
||
|
|
|
|
There is a very good library (DSL) written for this called simple-build-tool
|
||
|
|
|
|
Since Scala runs on the JVM, you can do this the same way as you would in Java, by using You can also use |
||
|
|
