summaryrefslogtreecommitdiff
path: root/scalalib/test/src
diff options
context:
space:
mode:
Diffstat (limited to 'scalalib/test/src')
-rw-r--r--scalalib/test/src/mill/scalalib/GenIdeaTests.scala5
1 files changed, 4 insertions, 1 deletions
diff --git a/scalalib/test/src/mill/scalalib/GenIdeaTests.scala b/scalalib/test/src/mill/scalalib/GenIdeaTests.scala
index a6700824..0ce9533f 100644
--- a/scalalib/test/src/mill/scalalib/GenIdeaTests.scala
+++ b/scalalib/test/src/mill/scalalib/GenIdeaTests.scala
@@ -23,7 +23,10 @@ object GenIdeaTests extends TestSuite {
'genIdeaTests - {
val pp = new scala.xml.PrettyPrinter(999, 4)
- val layout = GenIdea.xmlFileLayout(helloWorldEvaluator.evaluator, HelloWorld, fetchMillModules = false)
+ val layout = GenIdea.xmlFileLayout(
+ helloWorldEvaluator.evaluator,
+ HelloWorld,
+ ("JDK_1_8", "1.8 (1)"), fetchMillModules = false)
for((relPath, xml) <- layout){
write.over(millSourcePath/ "generated"/ relPath, pp.format(xml))
}