|
|
|
|
|
by eeperson
5317 days ago
|
|
Could you go into more detail about what problems you had with sbt? What you describe doesn't really match up with my experience. If you want to use it simply to compile Scala code you can just do 'sbt compile' in the directory containing the Scala files. If you want to add dependencies you just create a file called 'build.sbt' and add lines like: libraryDependencies += "org.scala-tools" %% "scala-stm" % "0.3"
Although this may not be clear since sbt presents 2 configuration methods, a simple one (as seen above) and a complex one. |
|