summaryrefslogtreecommitdiff
path: root/project/MiMa.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan@lightbend.com>2016-09-05 09:18:41 +0200
committerGitHub <noreply@github.com>2016-09-05 09:18:41 +0200
commitd29df860e5b10181f6c37bde3bd7539bdc843e0d (patch)
tree6928e9df5f712a7c70b9d79af3330997b5ca0bf8 /project/MiMa.scala
parent04c7fae7b886e19d2006ab3146db3a8fc92c9bcd (diff)
parent5ecc0376f8e352a66d73153f8205d7993849c6ec (diff)
downloadscala-d29df860e5b10181f6c37bde3bd7539bdc843e0d.tar.gz
scala-d29df860e5b10181f6c37bde3bd7539bdc843e0d.tar.bz2
scala-d29df860e5b10181f6c37bde3bd7539bdc843e0d.zip
Merge pull request #5311 from szeiger/wip/raid
Remove ant
Diffstat (limited to 'project/MiMa.scala')
-rw-r--r--project/MiMa.scala5
1 files changed, 2 insertions, 3 deletions
diff --git a/project/MiMa.scala b/project/MiMa.scala
index 66442fc725..6c6f5efd51 100644
--- a/project/MiMa.scala
+++ b/project/MiMa.scala
@@ -4,7 +4,7 @@
// both forwards and backwards incompatibilities (possibly fixed as of
// https://github.com/typesafehub/migration-manager/commit/2844ffa48b6d2255aa64bd687703aec21dadd55e)
// * ability to pass a filter file (https://github.com/typesafehub/migration-manager/issues/102)
-// So we invoke the MiMa CLI directly; it's also what the Ant build did.
+// So we invoke the MiMa CLI directly.
import sbt._
import sbt.Keys._
@@ -29,8 +29,7 @@ object MiMa {
prev = if (isForward) curr else prev,
curr = if (isForward) prev else curr,
// TODO: it would be nicer if each subproject had its own whitelist, but for now
- // for compatibility with how Ant did things, there's just one at the root.
- // once Ant is gone we'd be free to split it up.
+ // there's just one at the root. with the Ant build gone, we would be free now to split it.
filter = (baseDirectory in ThisBuild).value / s"bincompat-$direction.whitelist.conf",
log)
}