From 1046ea6f92db707cc3514a21b1b97a0f2721f7fe Mon Sep 17 00:00:00 2001 From: ices <2388627880@qq.com> Date: Sun, 9 Jun 2019 16:46:07 +0800 Subject: [PATCH] Update the lastest sbt plugins. --- When I builded this project,I found errors. They were called by the sbt's plugins version isn't the latest. Where the file is ``` project/plugins.sbt ```. Here are the lastest plugins' url: 1. [org.scalariform](https://github.com/sbt/sbt-scalariform) 2. [org.scalastyle](http://www.scalastyle.org/sbt.html) 3. [com.eed3si9n](https://github.com/sbt/sbt-assembly#using-published-plugin) --- project/plugins.sbt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index be9f45c..617649c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,7 +1,7 @@ resolvers += Resolver.typesafeRepo("releases") -addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.6.0") +addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.8.2") -addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.8.0") +addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0") -addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.4") +addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.9")