-
Notifications
You must be signed in to change notification settings - Fork 96
Recompilation
Aleksandar Vitorovic edited this page May 3, 2016
·
25 revisions
The code can be compiled by running
$ sbt compileThe command for generating the Squall jar (squall-core/target/squall-0.2.0.jar) is:
$ sbt packageThe recompile.sh from the bin directory contains only sbt package. You can add your code to some of the Squall source code directories, and it will be included in the compilation process.
In addition, if you want to package only the dependencies (squall-core/target/squall-dependencies-0.2.0.jar), please run the following command:
$ sbt assemblyPackageDependencyFinally, if you want to include the dependencies in a jar (squall-core/target/squall-standalone-0.2.0.jar):
$ sbt assemblyIf something doesn't work as expected, check the troubleshooting section or open an issue.