Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update sbt to 1.10.0 #98

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version = 1.3.13
sbt.version = 1.10.0
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version in ThisBuild := "1.1.4-SNAPSHOT"
(ThisBuild / version) := "1.1.4-SNAPSHOT"