summaryrefslogtreecommitdiff
path: root/scratch/build.sc
diff options
context:
space:
mode:
Diffstat (limited to 'scratch/build.sc')
-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"
}