Advertisement
mitrakov

Sbt simple project

Mar 30th, 2019
333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.29 KB | None | 0 0
  1. // project/build.properties:
  2. sbt.version=1.2.8
  3.  
  4. // build.sbt
  5. name := "sandbox-sbt"
  6. version := "1.0.0"
  7. scalaVersion := "2.12.8"
  8. organization := "Artem Mitrakov"
  9.  
  10. libraryDependencies ++= Seq(
  11.   "org.slf4j" % "slf4j-nop" % "1.7.21",
  12.   "org.scalatest" %% "scalatest" % "3.0.5" % Test
  13. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement