Move to subproject
This commit is contained in:
parent
9a7f66a268
commit
73bad1448d
96 changed files with 21 additions and 13 deletions
34
build.sbt
34
build.sbt
|
@ -1,15 +1,23 @@
|
|||
name := "minisql"
|
||||
val prjScalaVersion = "3.7.1"
|
||||
|
||||
scalaVersion := "3.7.1"
|
||||
lazy val root = (project in file("."))
|
||||
.aggregate(core)
|
||||
.settings(
|
||||
name := "minisql",
|
||||
scalaVersion := prjScalaVersion
|
||||
)
|
||||
|
||||
libraryDependencies ++= Seq(
|
||||
"org.scalameta" %% "munit" % "1.1.1" % Test
|
||||
)
|
||||
|
||||
|
||||
scalacOptions ++= Seq(
|
||||
"-deprecation",
|
||||
"-feature",
|
||||
"-source:3.7-migration",
|
||||
"-rewrite"
|
||||
)
|
||||
lazy val core = (project in file("core"))
|
||||
.settings(
|
||||
name := "minisql-core",
|
||||
scalaVersion := prjScalaVersion,
|
||||
libraryDependencies ++= Seq(
|
||||
"org.scalameta" %% "munit" % "1.1.1" % Test
|
||||
),
|
||||
scalacOptions ++= Seq(
|
||||
"-deprecation",
|
||||
"-feature",
|
||||
"-source:3.7-migration",
|
||||
"-rewrite"
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue