summaryrefslogtreecommitdiff
path: root/build.sbt
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 /build.sbt
parent8b973a868e1c84c2cdc213999028f81c5421f413 (diff)
downloadmill-5f441a4f990f2b9a4e9fa0ed47824ccbae1728f4.tar.gz
mill-5f441a4f990f2b9a4e9fa0ed47824ccbae1728f4.tar.bz2
mill-5f441a4f990f2b9a4e9fa0ed47824ccbae1728f4.zip
remove unused MILL_COMPILER_PLUGIN flag
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt3
1 files changed, 1 insertions, 2 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"
}