Adding .jar's to classpath (Scala) - Stack Overflow
ou need to pass both classpath paths as a single argument.
Try this:
$ scalac -classpath "*.jar:dependencies/*.jar" PageRank.scala $ scala -classpath "*.jar:dependencies/*.jar" PageRank PageRankVertex(id=2, state=0.9999999999999997) PageRankVertex(id=1, state=0.9999999999999997)
Read full article from Adding .jar's to classpath (Scala) - Stack Overflow
No comments:
Post a Comment