summaryrefslogtreecommitdiff
path: root/scalalib
Commit message (Collapse)AuthorAgeFilesLines
* increase readTimeout to 60000ms, matching mill 0.3.6 semanticsLi Haoyi2019-06-062-4/+4
|
* Configurable read and connect timeouts for Sonatype publishingPaulius Imbrasas2019-06-063-4/+18
|
* Merge branch '600'Li Haoyi2019-05-203-29/+24
|\
| * Switch from scalafmt-cli to scalafmt-dynamicUnknown2019-04-213-29/+24
| |
* | Merge branch '609'Li Haoyi2019-05-201-5/+5
|\ \
| * | Downstream files overwrite upstream files on assemblyNathan Fischer2019-05-161-5/+5
| | | | | | | | | resolves #608
* | | fix for 2.13.0-RC2Li Haoyi2019-05-191-2/+1
| | |
* | | swap gpg key name orderLi Haoyi2019-05-191-1/+1
| | |
* | | Bump ammonite to 1.6.7 (#610)Li Haoyi2019-05-1916-92/+130
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * bump ammonite to 1.6.7 * upgrade all the things * add scalaj-http shims for bootstrapping * wip * tweak-error-message * tweak coursier * .
* / Removed unused variableTobias Roeser2019-05-031-1/+0
|/
* Revert Zinc to 1.2.5 to match release notes (#594)Ahir Reddy2019-04-171-2/+1
|
* handle projects not in the main build.sc file (#579)Andrew Richards2019-04-171-2/+5
|
* Documentation around artifact name for publishingNathan Fischer2019-04-051-2/+10
| | | | Added a line to the documentation on how to change the artifact id. Updated the scaladoc on JavaModule to explain the difference between artifactName and artifactId.
* Update ZincWorkerImpl.scalaMinghao Liu2019-03-111-7/+20
|
* Renamed JavaModule.docOptions to javadocOptionsTobias Roeser2019-02-261-3/+5
|
* Introduced JavaModule.docOptions to add extra (Java)Doc procesing optionsTobias Roeser2019-02-251-11/+16
| | | | | | E.g. disabling picky JavaDoc linter with `-Xdoclint:none`. The method is called `docOptions` instead of `javadocOptions` so that other modules like `ScalaModule` can reuse it.
* Added support for typelevel scala librariesTobias Roeser2019-02-241-0/+3
| | | | Fixes https://github.com/lihaoyi/mill/issues/534
* Search tests annotations also on inherited public methodsTobias Roeser2019-02-221-4/+5
| | | | Fixes https://github.com/lihaoyi/mill/issues/553
* Also add main-api to build library pathsTobias Roeser2019-02-181-1/+1
|
* Only hold weak references to classloaders in internal cacheTobias Roeser2019-02-111-7/+14
| | | | | That way, we do not prevent class loader unloading / garbage collection. Also, we reduce the chance to use an outdated class loader.
* Also export compileIvyDeps as provided scopeTobias Roeser2019-02-081-1/+9
| | | | Fixes https://github.com/lihaoyi/mill/issues/535
* Added compiler-classpath properties to generated IntelliJ xml files (#531)andres-pipicello-olx2019-01-312-11/+59
|
* PublishModule: add --gpgKeyName flag (#530)lxohi2019-01-212-14/+20
| | | | | | * PublishModule: adds gpgKeyName flag * 1 - Intro to Mill.md: usage sample of publish updates for gpgKeyName
* Fixed GenIdea library path to use file:// if it is not a jar file (otherwise ↵Robby2019-01-141-1/+1
| | | | dest/classes and resources dirs are not properly recognized).
* More improvements to ZincWorkerImpl (#526)Li Haoyi2019-01-112-15/+32
| | | | | | | | | | | | | | * More improvements to ZincWorkerImpl - Cache classloaders separately from `ScalaInstance`s - Pre-compute `analysisMap` to speed up lookups - Allow compile-to-jar using sbt/zinc 1.3.0-m1 * Update build.sc * Update ZincWorkerModule.scala * Update ZincWorkerImpl.scala
* Update ZincWorkerImpl.scalaLi Haoyi2019-01-091-6/+6
|
* Allow usage of ZincWorkerImpl without hashing files (#525)Li Haoyi2019-01-091-2/+39
| | | | | | | | | | | | * Allow usage of ZincWorkerImpl without hashing files This is to better support non-Mill build tools like Bazel or Make who might do their own file hashing/mtiming for change-detection * Update ZincWorkerImpl.scala * Update ZincWorkerImpl.scala * Update ZincWorkerImpl.scala
* Avoid unnecessary dependency downloading by providing fetches per cache ↵gehnaphore2018-12-205-9/+19
| | | | | | | | | | | | policy (#494) * Avoid unnecessary dependency downloading by providing fetches per cache policy; add ticker logging when they are downloading * Fix GenIdeaTests by making the Log context Option[]al * Add some comments * Rebase and resolve
* bump Ammonite versionLi Haoyi2018-12-191-1/+1
|
* Merge branch 'master' into bump-zincLi Haoyi2018-12-1953-204/+233
|\
| * Generalize Zinc Worker (#514)Li Haoyi2018-12-1811-148/+177
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Generalize Zinc worker - Compiler bridges can now be either pre-compiled or on-demand-compiled - Scala library/compiler jar discovery is now configurable - Zinc compiler cache is now configurable, rather than being hardcoded at n=1 * . * update constructor args * remove duplicate util/AggWrapper.scala file * fix * fix * fix * cleanup
| * fix GenIdea to create required folders (#510)dohrayme2018-12-141-1/+1
| |
| * collapse boilerplate folder structure within src/ folders (#505)Li Haoyi2018-12-1252-2/+2
| | | | | | | | | | | | * collapse boilerplate folder structure within src/ folders * .
* | bump zinc 1.2.1 -> 1.2.5bump-zincLi Haoyi2018-12-191-1/+1
|/
* First pass at splitting out worker-api from mill core. (#504)Li Haoyi2018-12-1217-165/+171
| | | | | | | | | This reduces the {scala,scalajs,scalanative}-worker dependency from the entirety of Mill to a much narrower `mill.api` module. This reduces the amount of classpath pollution within these workers, should mean they're much faster to download the first time, and reduces the amount of random junk they would pull in if they were to be used outside of the Mill project. The interactions between the various *Modules and their *WorkerImpls has been narrowed down to the `*.api` modules, which only depend on other `*.api` modules. A lot of things have been moved around; user code is unlikely to break, but it's possible some will if it references classes that have been moved around. Forwarders have been left for the few internal classes that Mill uses in it's own `build.sc`, to support bootstrapping. Third-party code which breaks should be a straightforward to fix just by updating imports The `*.api` modules have minimal dependencies (mostly uPickle and os-lib) and minimal code. There is still a bunch of implementation code in there: some of it defining data-types that are commonly sent across the module/worker interface (`Agg`, `PathRef`, ...), and some of it just general helper functions that are needed both in modules and workers. The latter code isn't strictly API definitions, but for now is small enough it's not worth splitting into it's own module
* fix testsLi Haoyi2018-12-121-1/+1
|
* bump ammonite versionLi Haoyi2018-12-111-1/+1
|
* Add Gitlab to VersionControl (#489)Leonard Ehrenfried2018-12-071-2/+9
|
* bump Ammonite version0.3.5Li Haoyi2018-11-192-2/+2
|
* 0.3.4Li Haoyi2018-11-061-1/+1
|
* fix assembly path handling, swap out Jvm.scala's custom subprocess handling ↵Li Haoyi2018-11-053-9/+9
| | | | with os.proc
* WIP migrating over from `ammonite.ops` to `os` module.Li Haoyi2018-11-0518-243/+226
| | | | __.compile works, haven't run tests yet
* Merge branch 'master' of github.com:lihaoyi/millLi Haoyi2018-11-021-1/+2
|\
| * Added additional debug log channel (default: log-file only)Tobias Roeser2018-10-301-1/+2
| |
* | Fix https://github.com/lihaoyi/mill/issues/475Li Haoyi2018-11-023-15/+53
|/
* 0.3.20.3.2Li Haoyi2018-10-201-1/+1
|
* Allow use of inferred main classes when building self-executing assembliesLi Haoyi2018-10-191-1/+1
|
* 0.3.00.3.0Li Haoyi2018-10-181-1/+1
|
* bump ammonite version againLi Haoyi2018-10-181-1/+1
|
* bump Ammonite versionLi Haoyi2018-10-183-17/+16
|