summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-12-15 18:29:51 -0800
committerLi Haoyi <haoyi.sg@gmail.com>2017-12-15 18:29:51 -0800
commit5f441a4f990f2b9a4e9fa0ed47824ccbae1728f4 (patch)
treeb1bec201030ed31de84916d3db2f7c36fb9c9caf
parent8b973a868e1c84c2cdc213999028f81c5421f413 (diff)
downloadmill-5f441a4f990f2b9a4e9fa0ed47824ccbae1728f4.tar.gz
mill-5f441a4f990f2b9a4e9fa0ed47824ccbae1728f4.tar.bz2
mill-5f441a4f990f2b9a4e9fa0ed47824ccbae1728f4.zip
remove unused MILL_COMPILER_PLUGIN flag
-rw-r--r--build.sbt3
-rwxr-xr-xbuild.sc3
2 files changed, 2 insertions, 4 deletions
diff --git a/build.sbt b/build.sbt
index 7069a5c5..f9294429 100644
--- a/build.sbt
+++ b/build.sbt
@@ -112,8 +112,7 @@ val bridgeProps = Def.task{
"MILL_COMPILER_BRIDGE_2_11_8" -> (packageBin in (bridge2_11_8, Compile)).value.absolutePath,
"MILL_COMPILER_BRIDGE_2_11_11" -> (packageBin in (bridge2_11_11, Compile)).value.absolutePath,
"MILL_COMPILER_BRIDGE_2_12_3" -> (packageBin in (bridge2_12_3, Compile)).value.absolutePath,
- "MILL_COMPILER_BRIDGE_2_12_4" -> (packageBin in (bridge2_12_4, Compile)).value.absolutePath,
- "MILL_COMPILER_PLUGIN" -> (packageBin in (plugin, Compile)).value
+ "MILL_COMPILER_BRIDGE_2_12_4" -> (packageBin in (bridge2_12_4, Compile)).value.absolutePath
)
for((k, v) <- mapping) yield s"-D$k=$v"
}
diff --git a/build.sc b/build.sc
index 04bc489b..c7a16754 100755
--- a/build.sc
+++ b/build.sc
@@ -108,8 +108,7 @@ object ScalaPlugin extends MillModule {
"MILL_COMPILER_BRIDGE_2_11_8" -> bridges("2.11.8").compile().classes.path,
"MILL_COMPILER_BRIDGE_2_11_11" -> bridges("2.11.11").compile().classes.path,
"MILL_COMPILER_BRIDGE_2_12_3" -> bridges("2.12.3").compile().classes.path,
- "MILL_COMPILER_BRIDGE_2_12_4" -> bridges("2.12.4").compile().classes.path,
- "MILL_COMPILER_PLUGIN" -> CompilerPlugin.compile().classes.path
+ "MILL_COMPILER_BRIDGE_2_12_4" -> bridges("2.12.4").compile().classes.path
)
for((k, v) <- mapping.toSeq) yield s"-D$k=$v"
}