From 44f18298dd802b04307d677eb6202fa0f6060de2 Mon Sep 17 00:00:00 2001 From: Antoine Sauray Date: Mon, 4 Mar 2019 07:54:19 +0100 Subject: [PATCH 1/3] add microsite plugin to plugins.sbt --- project/plugins.sbt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 1d6c5e6..cf011f6 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,5 @@ -addSbtPlugin("com.dwijnand" % "sbt-dynver" % "3.0.0") -addSbtPlugin("com.dwijnand" % "sbt-travisci" % "1.1.1") -addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.6.0-RC3") -addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.3") +addSbtPlugin("com.dwijnand" % "sbt-dynver" % "3.0.0") +addSbtPlugin("com.dwijnand" % "sbt-travisci" % "1.1.1") +addSbtPlugin("com.geirsson" % "sbt-scalafmt" % "1.6.0-RC3") +addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.3") +addSbtPlugin("com.47deg" % "sbt-microsites" % "0.9.0") From 69de752f7be40c1c43799dc2c5bfd66e0a98c8fa Mon Sep 17 00:00:00 2001 From: Antoine Sauray Date: Mon, 4 Mar 2019 07:54:28 +0100 Subject: [PATCH 2/3] enable microsite plugin --- build.sbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sbt b/build.sbt index 64bd057..a3c7560 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,7 @@ import Scalaz._ +enablePlugins(MicrositesPlugin) + lazy val commonSettings = Seq( organization := "org.scalaz", version := "0.1.0-SNAPSHOT", From 48458693605f343c3f29570a9cdb7ba91e6bf7b6 Mon Sep 17 00:00:00 2001 From: Antoine Sauray Date: Mon, 4 Mar 2019 07:58:21 +0100 Subject: [PATCH 3/3] add microsite name and description in build.sbt --- build.sbt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.sbt b/build.sbt index a3c7560..680ceef 100644 --- a/build.sbt +++ b/build.sbt @@ -1,6 +1,8 @@ import Scalaz._ enablePlugins(MicrositesPlugin) +micrositeName := "Scalaz Reactive" +micrositeDescription := "A high-performance, purely-functional library for reactive programming based on efficient incremental computation." lazy val commonSettings = Seq( organization := "org.scalaz",