Skip to content

Commit c941106

Browse files
committed
Merge remote-tracking branch 'origin/2.12.x' into 2.13.x
2 parents 991ad1b + 1fefaba commit c941106

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

build.sbt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ versionWithGit
1111

1212
Versioning.settings
1313

14+
// necessary since sbt 0.13.12 for some dark and mysterious reason
15+
// perhaps related to sbt/sbt#2634. details, to the extent they
16+
// are known/understood, at scala/scala-dist#171
17+
scalaVersion := version.value
18+
1419
s3Settings
1520

1621
host in upload := "downloads.typesafe.com.s3.amazonaws.com"

project/Wix.scala

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ object Wix {
3232
)
3333

3434
private def makeProductConfig(stage: File, stageApi: File) = {
35+
36+
// there are deprecation warnings here. the methods have been undeprecated
37+
// at https://github.com/sbt/sbt-native-packager/pull/909 . once we upgrade
38+
// to a newer sbt-native-packager that includes that change, we could
39+
// enable -Xfatal-warnings again in scalacOptions in project/plugins.sbt
3540
val (bin, binDirXml0) = generateComponentsAndDirectoryXml(stage / "bin")
3641
val (doc, docDirXml) = generateComponentsAndDirectoryXml(stage / "doc", "doc_")
3742
val (lib, libDirXml) = generateComponentsAndDirectoryXml(stage / "lib")

0 commit comments

Comments
 (0)