I want to use SNA in scala. I am using sbt to manage my dependencies.
At SNA you can see import net.java.dev.sna.SNA
But I can't find it in Maven
How would I use SNA in my Scala project if I can't find it in maven? There is also a Svn trunk But I don't know what I should do with it.
Update 1:
I manged to get it "working" by just copy & paste the SNA.scala
And I had to add class SNAException(msg:String) extends Exception(msg)
because it was missing.