Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. sh-3.2$ tree -I 'project|target|.idea|*.iml'
  2. .
  3. ├── build.sbt
  4. └── src
  5. ├── main
  6. │   └── scala
  7. │   └── example
  8. │   └── Hello.scala
  9. └── test
  10. └── scala
  11. └── example
  12. └── HelloSpec.scala
  13.  
  14. 7 directories, 3 files
  15.  
  16.  
  17. sh-3.2$ cat build.sbt
  18. import Dependencies._
  19.  
  20. ThisBuild / scalaVersion := "2.12.8"
  21. ThisBuild / version := "0.1.0-SNAPSHOT"
  22. ThisBuild / organization := "com.example"
  23. ThisBuild / organizationName := "example"
  24.  
  25. lazy val root = (project in file("."))
  26. .settings(
  27. name := "sbtexample",
  28. libraryDependencies += scalaTest % Test
  29. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement