mirror of
https://github.com/enso-org/enso.git
synced 2024-11-27 05:23:48 +03:00
117 lines
3.4 KiB
Scala
117 lines
3.4 KiB
Scala
// Global Configuration
|
|
organization := "org.enso"
|
|
scalaVersion := "2.12.8"
|
|
|
|
// Compiler Options
|
|
scalacOptions ++= Seq(
|
|
"-deprecation",
|
|
"-feature",
|
|
"-unchecked",
|
|
"-Xlint"
|
|
)
|
|
|
|
// Benchmark Configuration
|
|
lazy val Benchmark = config("bench") extend Test
|
|
lazy val bench = taskKey[Unit]("Run Benchmarks")
|
|
|
|
// Global Project
|
|
lazy val enso = (project in file("."))
|
|
.settings(version := "0.1")
|
|
.aggregate(
|
|
syntax,
|
|
pkg,
|
|
interpreter,
|
|
projectManager
|
|
)
|
|
|
|
// Sub-Projects
|
|
lazy val syntax = (project in file("syntax"))
|
|
.settings(
|
|
mainClass in (Compile, run) := Some("org.enso.syntax.Main"),
|
|
version := "0.1"
|
|
)
|
|
.settings(
|
|
libraryDependencies ++= Seq(
|
|
"com.storm-enroute" %% "scalameter" % "0.17" % "bench",
|
|
"org.typelevel" %% "cats-core" % "1.6.0",
|
|
"org.scalatest" %% "scalatest" % "3.0.5" % Test,
|
|
"com.lihaoyi" %% "pprint" % "0.5.3"
|
|
),
|
|
resolvers ++= Seq(
|
|
"Sonatype OSS Snapshots" at
|
|
"https://oss.sonatype.org/content/repositories/snapshots",
|
|
"Sonatype OSS Releases" at
|
|
"https://oss.sonatype.org/content/repositories/releases"
|
|
)
|
|
)
|
|
.settings(SbtJFlexPlugin.jflexSettings)
|
|
.configs(Test)
|
|
.settings(
|
|
testFrameworks += new TestFramework("org.scalameter.ScalaMeterFramework"),
|
|
logBuffered := false
|
|
)
|
|
.configs(Benchmark)
|
|
.settings(
|
|
inConfig(Benchmark)(Defaults.testSettings),
|
|
bench := (test in Benchmark).value,
|
|
parallelExecution in Benchmark := false
|
|
)
|
|
|
|
lazy val pkg = (project in file("pkg"))
|
|
.settings(
|
|
mainClass in (Compile, run) := Some("org.enso.pkg.Main"),
|
|
version := "0.1"
|
|
)
|
|
.settings(
|
|
libraryDependencies ++= Seq("circe-core", "circe-generic", "circe-yaml")
|
|
.map("io.circe" %% _ % "0.10.0"),
|
|
libraryDependencies += "commons-io" % "commons-io" % "2.6"
|
|
)
|
|
|
|
lazy val interpreter = (project in file("interpreter"))
|
|
.settings(
|
|
mainClass in (Compile, run) := Some("org.enso.interpreter.Main"),
|
|
version := "0.1"
|
|
)
|
|
.settings(
|
|
libraryDependencies ++= Seq(
|
|
"com.chuusai" %% "shapeless" % "2.3.3",
|
|
"com.storm-enroute" %% "scalameter" % "0.17" % "bench",
|
|
"org.graalvm.sdk" % "graal-sdk" % "19.0.0",
|
|
"org.scalacheck" %% "scalacheck" % "1.14.0" % Test,
|
|
"org.scalatest" %% "scalatest" % "3.2.0-SNAP10" % Test,
|
|
"org.typelevel" %% "cats-core" % "2.0.0-M4"
|
|
)
|
|
)
|
|
.dependsOn(syntax)
|
|
.configs(Test)
|
|
.configs(Benchmark)
|
|
.settings(
|
|
inConfig(Benchmark)(Defaults.testSettings),
|
|
bench := (test in Benchmark).value,
|
|
parallelExecution in Benchmark := false
|
|
)
|
|
|
|
val akkaActor = "com.typesafe.akka" %% "akka-actor" % "2.5.23"
|
|
val akkaStream = "com.typesafe.akka" %% "akka-stream" % "2.5.23"
|
|
val akkaHttp = "com.typesafe.akka" %% "akka-http" % "10.1.8"
|
|
val akkaSpray = "com.typesafe.akka" %% "akka-http-spray-json" % "10.1.8"
|
|
val akkaTyped = "com.typesafe.akka" %% "akka-actor-typed" % "2.5.23"
|
|
|
|
val akka = Seq(akkaActor, akkaStream, akkaHttp, akkaSpray, akkaTyped)
|
|
|
|
val circe = Seq("circe-core", "circe-generic", "circe-yaml").map(
|
|
"io.circe" %% _ % "0.10.0"
|
|
)
|
|
|
|
lazy val projectManager = (project in file("project-manager"))
|
|
.settings(
|
|
(Compile / mainClass) := Some("org.enso.projectmanager.Server")
|
|
)
|
|
.settings(
|
|
libraryDependencies ++= akka,
|
|
libraryDependencies ++= circe,
|
|
libraryDependencies += "io.spray" %% "spray-json" % "1.3.5"
|
|
)
|
|
.dependsOn(pkg)
|