We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0218447 + b8a4d2d commit 3dace24Copy full SHA for 3dace24
project/Wix.scala
@@ -32,6 +32,11 @@ object Wix {
32
)
33
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
40
val (bin, binDirXml0) = generateComponentsAndDirectoryXml(stage / "bin")
41
val (doc, docDirXml) = generateComponentsAndDirectoryXml(stage / "doc", "doc_")
42
val (lib, libDirXml) = generateComponentsAndDirectoryXml(stage / "lib")
0 commit comments