Skip to content

Commit

Permalink
Also remove (now) unused core-definition
Browse files Browse the repository at this point in the history
  • Loading branch information
hubertp committed Jun 7, 2022
1 parent 9b647b9 commit d79d2b8
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 689 deletions.
28 changes: 0 additions & 28 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,6 @@ bootstrap := {}
lazy val enso = (project in file("."))
.settings(version := "0.1")
.aggregate(
`core-definition`,
`interpreter-dsl`,
`json-rpc-server-test`,
`json-rpc-server`,
Expand Down Expand Up @@ -938,30 +937,6 @@ lazy val testkit = project
)
)

lazy val `core-definition` = (project in file("lib/scala/core-definition"))
.configs(Benchmark)
.settings(
version := "0.1",
inConfig(Compile)(truffleRunOptionsSettings),
inConfig(Benchmark)(Defaults.testSettings),
Test / parallelExecution := false,
Test / logBuffered := false,
scalacOptions += "-Ymacro-annotations",
libraryDependencies ++= jmh ++ Seq(
"com.chuusai" %% "shapeless" % shapelessVersion,
"org.scalacheck" %% "scalacheck" % scalacheckVersion % Test,
"org.scalactic" %% "scalactic" % scalacticVersion % Test,
"org.scalatest" %% "scalatest" % scalatestVersion % Test,
"org.typelevel" %% "cats-core" % catsVersion,
"com.github.julien-truffaut" %% "monocle-core" % monocleVersion
),
addCompilerPlugin(
"org.typelevel" %% "kind-projector" % kindProjectorVersion cross CrossVersion.full
)
)
.dependsOn(graph)
.dependsOn(syntax.jvm)

lazy val searcher = project
.in(file("lib/scala/searcher"))
.configs(Test)
Expand Down Expand Up @@ -1222,15 +1197,12 @@ lazy val runtime = (project in file("engine/runtime"))
"com.novocode" % "junit-interface" % "0.11" % Test exclude ("junit", "junit-dep")
),
// Note [Unmanaged Classpath]
Compile / unmanagedClasspath += (`core-definition` / Compile / packageBin).value,
Test / unmanagedClasspath += (`core-definition` / Compile / packageBin).value,
Test / unmanagedClasspath += (baseDirectory.value / ".." / ".." / "app" / "gui" / "view" / "graph-editor" / "src" / "builtin" / "visualization" / "native" / "inc"),
Compile / compile / compileInputs := (Compile / compile / compileInputs)
.dependsOn(CopyTruffleJAR.preCompileTask)
.value,
Compile / compile := FixInstrumentsGeneration.patchedCompile
.dependsOn(FixInstrumentsGeneration.preCompileTask)
.dependsOn(`core-definition` / Compile / packageBin)
.value,
// Note [Classpath Separation]
Test / javaOptions ++= Seq(
Expand Down
5 changes: 0 additions & 5 deletions lib/scala/core-definition/README.md

This file was deleted.

Loading

0 comments on commit d79d2b8

Please sign in to comment.