diff --git a/build.sbt b/build.sbt index 6f9c463..afb73c9 100644 --- a/build.sbt +++ b/build.sbt @@ -32,16 +32,16 @@ lazy val root = project.in(file(".")) ), buildInfoKeys := Seq(name, version, scalaVersion, sbtVersion), buildInfoPackage := "com.github.scala2ts", - test in assembly := {}, - assemblyOption in assembly := - (assemblyOption in assembly).value.copy(includeScala = false), + (assembly / test) := {}, + (assembly / assemblyOption) := + ((assembly / assemblyOption)).value.copy(includeScala = false), /** * There's some classpath particularities when executing compiler plugins * so we need to make a fatjar * @see https://www.scala-lang.org/old/node/6664.html * @see https://github.com/sbt/sbt/issues/2255 */ - packageBin in Compile := (assembly in Compile).value, + (Compile / packageBin) := ((Compile / assembly)).value, releaseCrossBuild := true, releaseProcess := Seq[ReleaseStep]( checkSnapshotDependencies, diff --git a/project/build.properties b/project/build.properties index 302b6be..ee06c39 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version = 1.3.13 \ No newline at end of file +sbt.version = 1.10.0 \ No newline at end of file diff --git a/version.sbt b/version.sbt index 918f99a..3160eaf 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "1.1.4-SNAPSHOT" +(ThisBuild / version) := "1.1.4-SNAPSHOT"