aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
authorJon Pretty <jon.pretty@propensive.com>2017-10-30 12:55:57 +0100
committerJon Pretty <jon.pretty@propensive.com>2017-10-30 12:55:57 +0100
commit8edaa6e2adbb4aa724a7829be5003fdabb01628a (patch)
tree4138ee6e39625d8b65001a678e2cf37b6173b383 /build.sbt
parent8cd72499b92d745ce3e3f2621a03ab61ce78ef85 (diff)
downloadmagnolia-8edaa6e2adbb4aa724a7829be5003fdabb01628a.tar.gz
magnolia-8edaa6e2adbb4aa724a7829be5003fdabb01628a.tar.bz2
magnolia-8edaa6e2adbb4aa724a7829be5003fdabb01628a.zip
Derivation working for Show and Eq
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt7
1 files changed, 5 insertions, 2 deletions
diff --git a/build.sbt b/build.sbt
index 33026f3..9fc7552 100644
--- a/build.sbt
+++ b/build.sbt
@@ -32,7 +32,7 @@ lazy val examplesJS = examples.js
lazy val examplesNative = examples.native
lazy val tests = crossProject(JSPlatform, JVMPlatform, NativePlatform)
- .crossType(CrossType.Full)
+ .crossType(CrossType.Pure)
.in(file("tests"))
.settings(buildSettings: _*)
.settings(noPublishSettings: _*)
@@ -134,7 +134,10 @@ lazy val scalaMacroDependencies: Seq[Setting[_]] = Seq(
)
lazy val examplesDependencies: Seq[Setting[_]] = Seq(
- libraryDependencies += "org.typelevel" %% "cats-core" % "0.9.0")
+ libraryDependencies += "org.typelevel" %% "cats-core" % "0.9.0",
+ libraryDependencies += "com.propensive" %% "estrapade" % "1.0.0",
+ libraryDependencies += "com.propensive" %% "contextual-data" % "1.0.3"
+)
credentials ++= (for {
username <- Option(System.getenv().get("SONATYPE_USERNAME"))