summaryrefslogtreecommitdiff
path: root/scalalib/test/resources
Commit message (Collapse)AuthorAgeFilesLines
* Properly support test frameworks which spawn child tasksLi Haoyi2018-04-082-0/+24
| | | | Needed to fix https://github.com/lihaoyi/mill/issues/286
* Enable JUnit testing, via sbt-test-interface, for `JavaModule`sLi Haoyi2018-04-085-8/+43
|
* Fix #282 by passing plugins as arguments to scaladocjulianmichael2018-04-081-0/+5
| | | | Plus a couple tests to sanity check.
* First unit tests for `JavaModule`Li Haoyi2018-04-072-0/+15
|
* try to fix classloading issues on runLocal and test with java 9 (#255)Nikolay Tatarinov2018-03-251-1/+8
| | | | | | | | | | * fix class loading for inprocess in java 9 * always add rt jar in case of java 9 * move all custom classloading logic into mill.util.ClassLoader * add comments explaining parent class loader changes and comment in tests pointing to original issue
* use Cache.default to determine coursier location(fixes tests on my OS X)rockjam2018-03-242-2/+2
|
* Support scala milestone releases (with fixes for 2.13.0-M3) (#247)Nikolay Tatarinov2018-03-201-0/+5
| | | | | | | | | | * return full scala version for milestone releases * complete support for scala 2.13.0-M2 * match 2.13 milestone releases for compiler bridge sources * add hello world test case for scala 2.13.0-M3
* Add out/{module_name} as a content root in generated IntelliJ project (#196)Jeremy Apthorp2018-03-051-0/+1
|
* Update scala-library-2.12.4-sources.jar.xmlLi Haoyi2018-02-241-2/+2
|
* Update scala-library-2.12.4.jar.xmlLi Haoyi2018-02-241-2/+2
|
* GenIdea updates including a fix for #147 (#149)Andrew Richards2018-02-212-4/+7
| | | | | | | | | | | | | | | | | | | | | | | | * extract JDK version so you don't have to keep resetting it * give modules a base path looks much nicer in IntelliJ - the module is now in bold * exclude sbt target directories stops sbt artifacts appearing in search * Fix #147 - add IntelliJ scala library * exclude root sbt project and target folders from IJ search * only resort to full long path names for jars if the name is a duplicate duplicates are hard to find unless you are pulling the same thing from different repos (therefore different path) * update GenIdea tests * tidy GenIdea
* Add unit test for main method discoveryLi Haoyi2018-02-175-0/+33
|
* fix GenIdea testsLi Haoyi2018-02-119-52/+4
|
* Make use of `CrossScalaModule` in `HelloWorldTests`Li Haoyi2018-02-036-12/+33
| | | | Also standardize the `HelloWorldTests` onto the typical project layout, where the module of interest is nested within a top-level `BaseModule`
* fix scalalib testsLi Haoyi2018-02-031-5/+5
|
* Swap over to simplified Mill module/source layout from SBT'sLi Haoyi2018-01-2014-0/+119
Removes a lot of useless folders and gives us a chance to exercise this simplified layout. Support for the SBT layout is still verified by our integration tests