-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.sbt
30 lines (28 loc) · 1.01 KB
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
lazy val root = (project in file("."))
.settings(
commonSettings,
name := "master-project",
organization := "me.cassayre.florian",
version := "1.0.0",
versionScheme := Some("semver-spec"),
scalaVersion := "3.2.1-RC1-bin-20220619-4cb967f-NIGHTLY",
scalacOptions ++= Seq(
"-feature",
"-deprecation",
"-source:future",
"-language:implicitConversions",
"-old-syntax",
"-no-indent",
),
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "2.1.1",
libraryDependencies += "org.scalatest" %% "scalatest" % "3.2.10" % "test",
console / initialCommands := "import me.cassayre.florian.masterproject.front.*"
)
.dependsOn(lisa)
lazy val lisa = (project in file("lisa")).settings(commonSettings)
lazy val commonSettings = Seq(
publishTo := Some(MavenCache("local-maven", file("releases"))),
Compile / packageDoc / publishArtifact := false,
//packageDoc / publishArtifact := false,
Compile / doc / sources := Seq.empty,
)