Skip to content

Moves SCALA-10 to a different module. #72

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,16 @@ ThisBuild / version := "1.0-SNAPSHOT"
ThisBuild / organization := "com.baeldung"
ThisBuild / organizationName := "core-scala"

lazy val root = (project in file("core-scala"))
lazy val core_scala = (project in file("core-scala"))
.settings(
name := "core-scala",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % Test,
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test"
)

lazy val lang_scala = (project in file("lang-scala"))
.settings(
name := "lang-scala",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.0.5" % Test,
libraryDependencies += "com.novocode" % "junit-interface" % "0.11" % "test"
)
5 changes: 5 additions & 0 deletions lang-scala/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## Lang Scala tutorials

This module contains articles about Scala's Lang features

- [Def, Var & Val in Scala](https://www.baeldung.com/scala/def-var-val)
1 change: 1 addition & 0 deletions lang-scala/project/build.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
sbt.version=1.3.10