A minimal seed template for a Scalismo build.
Once you have sbt installed, you can clone this project to build an application making use of Scalismo. A very simple example application is shown in ExampleApp.scala.
Once the project installed, you can also check the quickstart guide for a quick tour of Scalismo's capabilities.
To compile your application as an executable Jar, you can use the assembly command:
sbt assembly
This will dump an executable jar file in the target/scala-2.12/ directory. To run the jar:
java -jar target/scala-2.12/executable.jar
The name as well as the Main class to be used for the executable jar can be changed in the build.sbt file