From e8e74a133f8cfb1552ffd79a01eed28687a285c7 Mon Sep 17 00:00:00 2001 From: Dylan Martin Date: Tue, 1 Sep 2020 13:18:45 -0700 Subject: [PATCH] and now I forgot to use the latest version of mu... (#89) * updating skeuomorph to use new java_package * updating the test to fail * I toDID it * adding an object for storing versions that are used in several places in the build.sbt * formatting and lazifying * lets try this * Update build.sbt Co-authored-by: Juan Pedro Moreno <4879373+juanpedromoreno@users.noreply.github.com> * Update build.sbt Co-authored-by: Juan Pedro Moreno <4879373+juanpedromoreno@users.noreply.github.com> * please work Co-authored-by: Juan Pedro Moreno <4879373+juanpedromoreno@users.noreply.github.com> --- build.sbt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index f8e2cefc..94b81903 100644 --- a/build.sbt +++ b/build.sbt @@ -8,11 +8,13 @@ addCommandAlias("ci-test", "scalafmtCheckAll; scalafmtSbtCheck; test; publishLoc addCommandAlias("ci-docs", "github; mdoc; headerCreateAll") addCommandAlias("ci-publish", "github; ci-release") +lazy val muV = "0.23.0" + lazy val core = project .settings(moduleName := "mu-srcgen-core") .settings( libraryDependencies ++= Seq( - "io.higherkindness" %% "mu-rpc-service" % "0.22.3", + "io.higherkindness" %% "mu-rpc-service" % muV, "com.github.julien-truffaut" %% "monocle-core" % "2.1.0", "io.higherkindness" %% "skeuomorph" % "0.0.25", "com.julianpeeters" %% "avrohugger-core" % "1.0.0-RC22", @@ -34,7 +36,7 @@ lazy val plugin = project scriptedLaunchOpts ++= Seq( "-Xmx2048M", "-XX:ReservedCodeCacheSize=256m", - "-Dmu=0.22.3", + "-Dmu=" + muV, "-Dversion=" + version.value ) )