From f2aefa998befc9cb6f5f29109f2ba07889a41a65 Mon Sep 17 00:00:00 2001 From: Adam Coffman Date: Mon, 26 Feb 2018 17:22:10 -0600 Subject: [PATCH] Update SBT and plugins This updates SBT to 1.1 for this project and updates the SBT plugins we're using accordingly. --- build.sbt | 10 +++------- project/build.properties | 2 +- project/plugins.sbt | 10 +++++----- 3 files changed, 9 insertions(+), 13 deletions(-) diff --git a/build.sbt b/build.sbt index 21552aa..2cdd33f 100644 --- a/build.sbt +++ b/build.sbt @@ -1,9 +1,5 @@ -import de.heikoseeberger.sbtheader.HeaderPattern - lazy val globalSettings = Seq( - headers := Map( - "scala" -> ( - HeaderPattern.cStyleBlockComment, + headerLicense := Some(HeaderLicense.Custom( s"""/* Copyright (c) 2018 CiBO Technologies - All Rights Reserved | * You may use, distribute, and modify this code under the | * terms of the BSD 3-Clause license. @@ -14,9 +10,9 @@ lazy val globalSettings = Seq( | */ | |""".stripMargin - ) - ), + )), organization := "com.cibo", + organizationName := "CiBO Technologies", homepage := Some(url("https://github.com/cibotech/leaflet-facade")), licenses += ("BSD Simplified", url("https://opensource.org/licenses/BSD-3-Clause")), scmInfo := Some(ScmInfo( diff --git a/project/build.properties b/project/build.properties index b9b73f4..210243d 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 0.13.11 +sbt.version = 1.1.1 diff --git a/project/plugins.sbt b/project/plugins.sbt index dca38b8..7bfd02e 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ -addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.19") -addSbtPlugin("de.heikoseeberger" % "sbt-header" % "1.6.0") -addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.3") -addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0") -addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "0.8.0") \ No newline at end of file +addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.22") +addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.0.0") +addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.7") +addSbtPlugin("org.foundweekends" % "sbt-bintray" % "0.5.3") +addSbtPlugin("org.scalastyle" %% "scalastyle-sbt-plugin" % "1.0.0") \ No newline at end of file