Skip to content

Commit ba4cd60

Browse files
authored
Merge pull request #72 from Baeldung/SCALA-10
Moves SCALA-10 to a different module.
2 parents 4ad2aad + af60dc0 commit ba4cd60

File tree

7 files changed

+14
-1
lines changed

7 files changed

+14
-1
lines changed

build.sbt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,16 @@ ThisBuild / version := "1.0-SNAPSHOT"
33
ThisBuild / organization := "com.baeldung"
44
ThisBuild / organizationName := "core-scala"
55

6-
lazy val root = (project in file("core-scala"))
6+
lazy val core_scala = (project in file("core-scala"))
77
.settings(
88
name := "core-scala",
99
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % Test,
1010
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test"
1111
)
12+
13+
lazy val lang_scala = (project in file("lang-scala"))
14+
.settings(
15+
name := "lang-scala",
16+
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % Test,
17+
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test"
18+
)

lang-scala/README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## Lang Scala tutorials
2+
3+
This module contains articles about Scala's Lang features
4+
5+
- [Def, Var & Val in Scala](https://www.baeldung.com/scala/def-var-val)

lang-scala/project/build.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
sbt.version=1.3.10

0 commit comments

Comments
 (0)