Skip to content

Commit 20dbccb

Browse files
committed
created new scala2 module and moved code and article related to typetag into it
1 parent 6f78fcd commit 20dbccb

File tree

33 files changed

+16
-6
lines changed

33 files changed

+16
-6
lines changed

build.sbt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,15 @@ lazy val scala_core_2 = (project in file("scala-core-modules/scala-core-2"))
4343
lazy val scala_core_3 = (project in file("scala-core-modules/scala-core-3"))
4444
.settings(
4545
name := "scala-core-3",
46+
scalaVersion := scala3Version,
47+
libraryDependencies ++= scalaTestDeps,
48+
libraryDependencies += jUnitInterface,
49+
libraryDependencies += "org.scala-lang.modules" %% "scala-xml" % "2.2.0"
50+
)
51+
52+
lazy val scala2_core = (project in file("scala-core-modules/scala2-core"))
53+
.settings(
54+
name := "scala2-core",
4655
libraryDependencies ++= scalaTestDeps,
4756
libraryDependencies += jUnitInterface,
4857
libraryDependencies += scalaReflection,

0 commit comments

Comments
 (0)