We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21e7fd7 commit 5665c70Copy full SHA for 5665c70
build.sbt
@@ -1,3 +1,11 @@
1
+version := "1.0"
2
+organization := "org.enso"
3
+scalaVersion := "2.12.8"
4
+
5
+lazy val Benchmark = config("bench") extend Test
6
7
+lazy val enso = (project in file(".")).aggregate(syntax)
8
9
lazy val syntax = (project in file("enso-lexer"))
10
.withId("enso-lexer")
11
.configs(Benchmark)
@@ -26,10 +34,3 @@ lazy val syntax = (project in file("enso-lexer"))
26
34
.settings(SbtJFlexPlugin.jflexSettings)
27
35
.settings(mainClass in (Compile,run) := Some("org.enso.main.Main"))
28
36
29
-version := "1.0"
30
-organization := "org.enso"
31
-scalaVersion := "2.12.8"
32
-
33
-lazy val root = (project in file(".")).aggregate(syntax)
-lazy val Benchmark = config("bench") extend Test
0 commit comments