Skip to content

Commit 3da3ea9

Browse files
committed
Update sbt to 1.2.8
1 parent 20af7d6 commit 3da3ea9

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

build.sbt

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
// forked from sbt/sbt-coffeescript https://github.com/sbt/sbt-coffeescript
2-
organization := "com.github.xenonabe"
3-
name := "sbt-coffeescript2"
4-
libraryDependencies ++= Seq(
5-
"org.webjars.npm" % "coffeescript" % "2.3.2",
6-
"org.webjars" % "mkdirp" % "0.5.0"
7-
)
8-
addSbtJsEngine("1.2.3")
2+
ThisBuild / organization := "com.github.xenonabe"
3+
ThisBuild / name := "sbt-coffeescript2"
4+
ThisBuild / scalaVersion := "2.12.13"
5+
6+
lazy val root = (project in file("."))
7+
.enablePlugins(SbtPlugin)
8+
.settings(
9+
addSbtJsEngine("1.2.3"),
10+
libraryDependencies ++= Seq(
11+
"org.webjars.npm" % "coffeescript" % "2.3.2",
12+
"org.webjars" % "mkdirp" % "0.5.0"
13+
)
14+
)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.0.2
1+
sbt.version=1.2.8

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
addSbtPlugin("com.typesafe.sbt" % "sbt-web-build-base" % "1.2.0")
1+
addSbtPlugin("com.typesafe.sbt" % "sbt-web-build-base" % "1.2.3")

version.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version in ThisBuild := "2.0.2-SNAPSHOT"
1+
ThisBuild / version := "2.0.2-SNAPSHOT"

0 commit comments

Comments
 (0)