Skip to content

Commit 3ee0d5d

Browse files
committed
Upgrade to sbt v1.11.7.
1 parent 40f3530 commit 3ee0d5d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

build.sbt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ val commonSettings = Def.settings(
5656

5757
lazy val root: Project = project.in(file(".")).
5858
settings(
59-
publishArtifact in Compile := false,
59+
Compile / publishArtifact := false,
6060
publish := {},
6161
publishLocal := {},
6262

6363
clean := clean.dependsOn(
64-
clean in `scalajs-env-jsdom-nodejs`,
65-
clean in `test-project`
64+
`scalajs-env-jsdom-nodejs` / clean,
65+
`test-project` / clean,
6666
).value
6767
)
6868

project/build.properties

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

project/plugins.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.0.0")
22

33
libraryDependencies += "org.scala-js" %% "scalajs-env-nodejs" % "1.0.0"
44

5-
unmanagedSourceDirectories in Compile +=
5+
Compile / unmanagedSourceDirectories +=
66
baseDirectory.value.getParentFile / "jsdom-nodejs-env/src/main/scala"

0 commit comments

Comments
 (0)