summaryrefslogtreecommitdiff
path: root/scratch
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2019-05-19 18:39:59 +0800
committerLi Haoyi <haoyi.sg@gmail.com>2019-05-19 18:39:59 +0800
commit694d323d67b492d38c15759d9b25f38e3119a767 (patch)
tree7f7daefa8b998f9e9bdcce965de1a3eb7d5bea5f /scratch
parent1d1c8c62cb6d358ced3aa3d3288271fbc49e5c87 (diff)
downloadmill-694d323d67b492d38c15759d9b25f38e3119a767.tar.gz
mill-694d323d67b492d38c15759d9b25f38e3119a767.tar.bz2
mill-694d323d67b492d38c15759d9b25f38e3119a767.zip
fix for 2.13.0-RC2
Diffstat (limited to 'scratch')
-rw-r--r--scratch/build.sc28
1 files changed, 2 insertions, 26 deletions
diff --git a/scratch/build.sc b/scratch/build.sc
index 0a33c86e..d9271f2d 100644
--- a/scratch/build.sc
+++ b/scratch/build.sc
@@ -1,31 +1,7 @@
import mill.Agg
import mill.scalalib._
-trait JUnitTests extends TestModule{
- def testFrameworks = Seq("com.novocode.junit.JUnitFramework")
-
- /**
- * Overriden ivyDeps Docs!!!
- */
- def ivyDeps = Agg(ivy"com.novocode:junit-interface:0.11")
- def task = T{
- "???"
- }
-}
-
-/**
- * The Core Module Docz!
- */
-object core extends JavaModule{
- object test extends Tests with JUnitTests
-
- /**
- * Core Task Docz!
- */
- def task = T{
- import collection.JavaConverters._
- println(this.getClass.getClassLoader.getResources("scalac-plugin.xml").asScala.toList)
- "Hello!"
- }
+object core extends ScalaModule{
+ def scalaVersion = "2.13.0-RC2"
}