File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,11 @@ versionWithGit
11
11
12
12
Versioning .settings
13
13
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
+
14
19
s3Settings
15
20
16
21
host in upload := " downloads.typesafe.com.s3.amazonaws.com"
Original file line number Diff line number Diff line change @@ -32,6 +32,11 @@ object Wix {
32
32
)
33
33
34
34
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
35
40
val (bin, binDirXml0) = generateComponentsAndDirectoryXml(stage / " bin" )
36
41
val (doc, docDirXml) = generateComponentsAndDirectoryXml(stage / " doc" , " doc_" )
37
42
val (lib, libDirXml) = generateComponentsAndDirectoryXml(stage / " lib" )
You can’t perform that action at this time.
0 commit comments