From 5665c701171b102b76922b104364501e4bede1c7 Mon Sep 17 00:00:00 2001 From: Marcin Kostrzewa Date: Fri, 7 Jun 2019 13:49:47 +0200 Subject: [PATCH] structure formatting --- build.sbt | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/build.sbt b/build.sbt index 9499f46d456..f3240c8908c 100644 --- a/build.sbt +++ b/build.sbt @@ -1,3 +1,11 @@ +version := "1.0" +organization := "org.enso" +scalaVersion := "2.12.8" + +lazy val Benchmark = config("bench") extend Test + +lazy val enso = (project in file(".")).aggregate(syntax) + lazy val syntax = (project in file("enso-lexer")) .withId("enso-lexer") .configs(Benchmark) @@ -26,10 +34,3 @@ lazy val syntax = (project in file("enso-lexer")) .settings(SbtJFlexPlugin.jflexSettings) .settings(mainClass in (Compile,run) := Some("org.enso.main.Main")) -version := "1.0" -organization := "org.enso" -scalaVersion := "2.12.8" - -lazy val root = (project in file(".")).aggregate(syntax) - -lazy val Benchmark = config("bench") extend Test