I want to start the app in console, but can't do this. In Scala IDE I add external jars and start the app, but scala -cp path/to/jars app.scala
is not working. How to execute it?
Asked
Active
Viewed 63 times
0

jwvh
- 50,871
- 7
- 38
- 64

Иван Иванов
- 1
- 2
-
1You need to add every jar to the classpath, not just directory, where they are. Check out here: https://docs.oracle.com/javase/8/docs/technotes/tools/windows/classpath.html Also `path/to/jars/*` may work. Note, that these are only external jars. The directory with the classes you are are running needs to be added too. – Dima May 26 '17 at 18:55
-
My .scala also have to be in classpath or compiled .class ? – Иван Иванов May 26 '17 at 18:57