aboutsummaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
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"))