mirror of
https://github.com/jlengrand/scala-intro-for-java-guys.git
synced 2026-03-10 08:41:22 +00:00
13 lines
282 B
Scala
13 lines
282 B
Scala
import Dependencies._
|
|
|
|
lazy val root = (project in file(".")).
|
|
settings(
|
|
inThisBuild(List(
|
|
organization := "com.example",
|
|
scalaVersion := "2.12.1",
|
|
version := "0.1.0-SNAPSHOT"
|
|
)),
|
|
name := "Hello",
|
|
libraryDependencies += scalaTest % Test
|
|
)
|