aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-04-08 20:30:44 -0700
committerJakob Odersky <jakob@odersky.com>2018-04-08 20:32:20 -0700
commitda6a5cad7ef0fe723ac126f921f97c36962f42af (patch)
treed86aae792a7c96c22685ba1657abc766d56d4be0 /build.sbt
parent98f1acf269312545192be115c75a6cce58c00766 (diff)
downloadyamlesque-da6a5cad7ef0fe723ac126f921f97c36962f42af.tar.gz
yamlesque-da6a5cad7ef0fe723ac126f921f97c36962f42af.tar.bz2
yamlesque-da6a5cad7ef0fe723ac126f921f97c36962f42af.zip
Restructure build
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt7
1 files changed, 3 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index efb528a..e2c057a 100644
--- a/build.sbt
+++ b/build.sbt
@@ -27,22 +27,21 @@ lazy val yamlesqueJVM = yamlesque.jvm
lazy val yamlesqueJS = yamlesque.js
lazy val yamlesqueNative = yamlesque.native
-lazy val yamlesqueSpray = crossProject(JVMPlatform)
+lazy val `yamlesque-spray-json` = crossProject(JVMPlatform)
.crossType(CrossType.Pure)
- .in(file("yamlesque-spray"))
.dependsOn(yamlesque)
.settings(testSettings)
.settings(
libraryDependencies += "io.spray" %%% "spray-json" % "1.3.4"
)
-lazy val yamlesqueSprayJVM = yamlesqueSpray.jvm
+lazy val `yamlesque-spray-jsonJVM` = `yamlesque-spray-json`.jvm
lazy val root = (project in file("."))
.aggregate(
yamlesqueJVM,
yamlesqueJS,
yamlesqueNative,
- yamlesqueSprayJVM
+ `yamlesque-spray-jsonJVM`
)
.settings(
publish := {},