summaryrefslogtreecommitdiff
path: root/scratch/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-09-20 14:15:50 +0800
committerGitHub <noreply@github.com>2018-09-20 14:15:50 +0800
commitd551ee9d751201491a1d64e4da76ab03e3815df6 (patch)
tree60471609f0957401fa1a7002578ad8c1acd6bc75 /scratch/build.sc
parentc8fd6bd9e1dc18c24e64147fcd221e0bf91c2d06 (diff)
downloadmill-d551ee9d751201491a1d64e4da76ab03e3815df6.tar.gz
mill-d551ee9d751201491a1d64e4da76ab03e3815df6.tar.bz2
mill-d551ee9d751201491a1d64e4da76ab03e3815df6.zip
Include scaladoc as part of mill inspect (#435)
Diffstat (limited to 'scratch/build.sc')
-rw-r--r--scratch/build.sc27
1 files changed, 19 insertions, 8 deletions
diff --git a/scratch/build.sc b/scratch/build.sc
index 46c271b5..0a33c86e 100644
--- a/scratch/build.sc
+++ b/scratch/build.sc
@@ -3,18 +3,29 @@ 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
-}
-object app extends JavaModule{
- def moduleDeps = Seq(core)
- object test extends Tests with JUnitTests
-}
-object scalapb extends mill.contrib.scalapblib.ScalaPBModule {
- def scalaVersion = "2.12.4"
- def scalaPBVersion = "0.7.4"
+ /**
+ * Core Task Docz!
+ */
+ def task = T{
+ import collection.JavaConverters._
+ println(this.getClass.getClassLoader.getResources("scalac-plugin.xml").asScala.toList)
+ "Hello!"
+ }
}
+