mirror of https://github.com/sbt/sbt.git
25 lines
538 B
Scala
25 lines
538 B
Scala
lazy val dottyVersion = "3.1.3"
|
|
|
|
lazy val plugin = project
|
|
.in(file("plugin"))
|
|
.settings(
|
|
name := "dividezero",
|
|
version := "0.0.1",
|
|
organization := "ch.epfl.lamp",
|
|
scalaVersion := dottyVersion,
|
|
)
|
|
|
|
lazy val app = project
|
|
.in(file("app"))
|
|
.settings(
|
|
scalaVersion := dottyVersion,
|
|
addCompilerPlugin("ch.epfl.lamp" %% "dividezero" % "0.0.1")
|
|
)
|
|
|
|
lazy val appOk = project
|
|
.in(file("appOk"))
|
|
.settings(
|
|
scalaVersion := dottyVersion,
|
|
addCompilerPlugin("ch.epfl.lamp" %% "dividezero" % "0.0.1")
|
|
)
|