summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2017-10-29 16:51:04 -0700
committerLi Haoyi <haoyi.sg@gmail.com>2017-10-29 16:51:04 -0700
commitee1c3d384dbf4e19244ffac595a7667efe0493f5 (patch)
tree6d8bc1278c171c7f81e5d4f98a7805a209394444
parent144f0997689f5b927ed5a966dd075ec15364641b (diff)
downloadmill-ee1c3d384dbf4e19244ffac595a7667efe0493f5.tar.gz
mill-ee1c3d384dbf4e19244ffac595a7667efe0493f5.tar.bz2
mill-ee1c3d384dbf4e19244ffac595a7667efe0493f5.zip
diagram out javac flow chart
-rw-r--r--src/test/scala/forge/IntegrationTests.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/scala/forge/IntegrationTests.scala b/src/test/scala/forge/IntegrationTests.scala
index d91f5618..cfa8a864 100644
--- a/src/test/scala/forge/IntegrationTests.scala
+++ b/src/test/scala/forge/IntegrationTests.scala
@@ -55,6 +55,11 @@ object IntegrationTests extends TestSuite{
object Build {
val sourceRootPath = javacDestPath / 'src
val resourceRootPath = javacDestPath / 'resources
+
+ // sourceRoot -> allSources -> classFiles
+ // |
+ // v
+ // resourceRoot ----> jar
val sourceRoot = Target.path(sourceRootPath)
val resourceRoot = Target.path(resourceRootPath)
val allSources = list(sourceRoot)