From 09fc3efe7b9e68ea8240626a4c835a2563295897 Mon Sep 17 00:00:00 2001 From: Adelbert Chang Date: Wed, 2 Mar 2016 15:20:49 -0500 Subject: [PATCH] Add io module to cats build --- build.sbt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.sbt b/build.sbt index 9e310047e1..04cf0359ae 100644 --- a/build.sbt +++ b/build.sbt @@ -95,22 +95,22 @@ lazy val cats = project.in(file(".")) .settings(moduleName := "root") .settings(catsSettings) .settings(noPublishSettings) - .aggregate(catsJVM, catsJS) - .dependsOn(catsJVM, catsJS, testsJVM % "test-internal -> test", bench % "compile-internal;test-internal -> test") + .aggregate(catsJVM, catsJS, ioJVM, ioJS) + .dependsOn(catsJVM, catsJS, ioJVM, ioJS, testsJVM % "test-internal -> test", bench % "compile-internal;test-internal -> test") lazy val catsJVM = project.in(file(".catsJVM")) .settings(moduleName := "cats") .settings(catsSettings) .settings(commonJvmSettings) - .aggregate(macrosJVM, coreJVM, lawsJVM, testsJVM, jvm, docs, bench) - .dependsOn(macrosJVM, coreJVM, lawsJVM, testsJVM % "test-internal -> test", jvm, bench % "compile-internal;test-internal -> test") + .aggregate(macrosJVM, coreJVM, ioJVM, lawsJVM, testsJVM, jvm, docs, bench) + .dependsOn(macrosJVM, coreJVM, ioJVM, lawsJVM, testsJVM % "test-internal -> test", jvm, bench % "compile-internal;test-internal -> test") lazy val catsJS = project.in(file(".catsJS")) .settings(moduleName := "cats") .settings(catsSettings) .settings(commonJsSettings) - .aggregate(macrosJS, coreJS, lawsJS, testsJS, js) - .dependsOn(macrosJS, coreJS, lawsJS, testsJS % "test-internal -> test", js) + .aggregate(macrosJS, coreJS, ioJS, lawsJS, testsJS, js) + .dependsOn(macrosJS, coreJS, ioJS, lawsJS, testsJS % "test-internal -> test", js) .enablePlugins(ScalaJSPlugin)