Reputation: 1041
I have created a .scala file in the Scala version of eclipse, it has a main and object. I want to somehow compile this possibly into a jar file, so I can run it from terminal?
any info will be appreciated.
Thanks, Rhys
Upvotes: 6
Views: 36182
Reputation: 4161
To create the JAR, follow this:
Then you can run it with
java -cp /path/to/My.jar com.co.package.MyObj
Upvotes: 2
Reputation: 5572
Here is the full process from the command line:
evan@vbox ~> cat test.scala
object test{
def main(args: Array[String]): Unit = println("Hello!")
}
evan@vbox ~> scalac test.scala
evan@vbox ~> scala test
Hello!
However if you want to use Scala IDE to its full potential I would check out this tutorial.
Upvotes: 12