Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Packaging and Deploying Scala Applications

Tags:

What is the simplest way to package a Scala application for use on a desktop PC? I'm guessing that would be in the form of a jar file.

At the moment I'm using SBT to compile and run programs

I'd be interested in solutions for machines that have Scala installed (and the library in their classpath), as well as those that only have Java.

like image 776
Simon Morgan Avatar asked Jun 11 '10 23:06

Simon Morgan


1 Answers

The simplest (and the most consistent) way to package a Scala application, is packaging into a JAR (like you do with normal Java applications). As long as JAR consists of standard compiled Java classes, you may run "Scala" JAR, even if you don't have Scala runtime at the box (all you need is a Java Runtime and scala-lang.jar on the classpath). You may specify the main class (gateway to functionalities of your application) in the manifast

Main-Class: mypackage.MyClass

so that you'll be able to call it only passing a JAR name to java.exe.

java -jar myjar.jar

You may specify the main class in SBT project definition.

like image 180
Vasil Remeniuk Avatar answered Sep 22 '22 01:09

Vasil Remeniuk