summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
Diffstat (limited to 'build.sc')
-rwxr-xr-xbuild.sc5
1 files changed, 4 insertions, 1 deletions
diff --git a/build.sc b/build.sc
index 8d1ea053..59b95abc 100755
--- a/build.sc
+++ b/build.sc
@@ -210,7 +210,10 @@ object integration extends MillModule{
def testArgs = T{
scalajslib.testArgs() ++
scalaworker.testArgs() ++
- Seq("-DMILL_TESTNG=" + testng.runClasspath().map(_.path).mkString(",")) ++
+ Seq(
+ "-DMILL_TESTNG=" + testng.runClasspath().map(_.path).mkString(","),
+ "-DMILL_VERSION=" + build.publishVersion()._2
+ ) ++
(for((k, v) <- testRepos()) yield s"-D$k=$v")
}
def forkArgs = testArgs()