summaryrefslogtreecommitdiff
path: root/docs/pages
Commit message (Collapse)AuthorAgeFilesLines
* Splitted up modules doc section into contrib and external modulesTobias Roeser2019-04-252-285/+281
|
* Fixed location of bloop module docs, againTobias Roeser2019-04-251-57/+58
|
* Fixed plugin order in docsTobias Roeser2019-04-251-58/+63
|
* Beginning of Bloop integration (#595)Olivier Mélois2019-04-251-0/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Sync with latest versions, started bloop connection * BloopModule back to the bare minimum * Added first Bloop related unit-tests * More tests * Fixed global module usage. * Added resolution in bloop config * More tests, using correct repository list * revert dev change * Changed moduleSourceMap implementation * Using path-dependant trait for the module This facilitates testing by preventing the trait from referencing a global module. * Added semanticDB to bloopConfig * Added documentation * Install returns pathRefs instead of paths * bumped semanticDB * Better use of mill's cache, avoid duplication of work * addressing comments
* Add imports to documentationNathan Fischer2019-04-171-1/+9
|
* tidy up Nathan Fischer2019-04-171-2/+2
|
* Reminder not to be badNathan Fischer2019-04-171-0/+6
|
* Tests Nathan Fischer2019-04-171-0/+1
|
* Short docNathan Fischer2019-04-171-0/+30
|
* Restored alphabetical order in plugin listTobias Roeser2019-04-161-239/+241
|
* Added some notes about internal/external pluginsTobias Roeser2019-04-161-0/+9
|
* Quick formatting fixes for Play module documentationNathan Fischer2019-04-091-22/+27
| | | | The markdown parser for lihaoyi.com requires an empty line before lists.
* Documentation around artifact name for publishingNathan Fischer2019-04-051-0/+3
| | | | 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.
* Add section to documentation about ivy classifiersNik Vanderhoof2019-03-111-0/+3
|
* Fixed some formatting issues in markdown filesTobias Roeser2019-03-111-39/+57
|
* Provides additionnal dependency keys for easier configurationJean Helou2019-03-111-0/+35
|
* Documents play module usageJean Helou2019-03-111-46/+235
|
* Add FreeBSD installation instructions (#559)Mateusz Piotrowski2019-02-231-0/+8
|
* Added mill-integrationtest pluginTobias Roeser2019-02-211-0/+105
|
* Version bump to more recent JBake versionTobias Roeser2019-02-191-1/+1
|
* Added proper imports to contrib module code snippetsTobias Roeser2019-02-181-4/+52
| | | | Fixes https://github.com/lihaoyi/mill/issues/547
* Moved BuildInfo into package mill.contrib.buildinfoTobias Roeser2019-02-181-1/+6
| | | | | | This fixes https://github.com/lihaoyi/mill/issues/548 See also https://github.com/lihaoyi/mill/issues/547
* Added mill-jbake pluginTobias Roeser2019-02-171-0/+36
|
* better aligns RouterModule with mill's naming conventionsJean Helou2019-02-141-5/+26
|
* Documentation section for the Play! moduleJean Helou2019-02-141-0/+59
|
* Corrected Java example: sources -> allSourcesTobias Roeser2019-02-111-1/+1
| | | | | | Fixes https://github.com/lihaoyi/mill/issues/538 Thanks to Jim Kleckner
* PublishModule: add --gpgKeyName flag (#530)lxohi2019-01-211-2/+4
| | | | | | * PublishModule: adds gpgKeyName flag * 1 - Intro to Mill.md: usage sample of publish updates for gpgKeyName
* 0.3.60.3.6Li Haoyi2019-01-171-2/+2
|
* adding support for customizable constructor annotations, codec and ↵Iurii Malchenko2019-01-041-2/+4
| | | | "inclusive dot" (#481)
* Fixed plugin usage docs for mill-osgiTobias Roeser2018-12-141-2/+5
|
* First pass at splitting out worker-api from mill core. (#504)Li Haoyi2018-12-121-6/+6
| | | | | | | | | 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
* Added note about experimental Evaluator commandsTobias Roeser2018-12-121-1/+4
| | | | See https://github.com/lihaoyi/mill/issues/502
* update-readmeLi Haoyi2018-11-191-2/+2
|
* 0.3.4Li Haoyi2018-11-061-2/+2
|
* mergeLi Haoyi2018-11-061-93/+22
|\
| * improving twirl (#473)Iurii Malchenko2018-11-021-93/+22
| | | | | | | | | | | | * improving twirl support: default imports, better `compileTwirl().classes` value * twirl module doc edits
* | WIP migrating over from `ammonite.ops` to `os` module.Li Haoyi2018-11-053-16/+16
|/ | | | __.compile works, haven't run tests yet
* Add tut contrib module (#464)David Gregory2018-10-311-0/+56
| | | | | | | | | | | | | | | | | | | | | | | | | | * Add tut contrib module * Add TutModule tests and documentation * Use Path instead of PathRef for tut target directory * Use the correct scala version in TutModule * Ensure resolving tut doesn't bring in extra scala-library jars * Ensure MILL_VERSION system property is set in tut tests * Fork to run tut to fix classpath problems, add test with library usage * Follow convention w.r.t. publishVersion in testArgs * Add Scaladoc to TutModule * Don't supply a default version of Tut * Update docs to account for mandatory tutVersion setting * Inline tutArgs, otherwise Tut does not recompile when sources change
* Added a section about debug logging to documentationTobias Roeser2018-10-301-0/+3
|
* adding TwirlModule docsIurii Malchenko2018-10-281-1/+149
|
* Added docs for TestNG support and sorted contrib modulesTobias Roeser2018-10-281-25/+42
|
* Fixed links in documentationTobias Roeser2018-10-261-4/+3
|
* Fixed formatting of code blockTobias Roeser2018-10-261-13/+13
|
* Re-organized thirdparty plugin sectionTobias Roeser2018-10-261-77/+91
| | | | | Each plugin is a level-3 section, that appears also in TOC. Plugins are in alphabetical order.
* Fixed some markdown formattingTobias Roeser2018-10-211-17/+19
|
* Added mill-osgi module to documentation, contrib modulesTobias Roeser2018-10-211-0/+21
|
* Added mill-publishM2 module (#467)Tobias Roeser2018-10-201-0/+36
|
* Example how to make case class serializable (#450)Tobias Roeser2018-10-051-0/+10
| | | | | | * Example how to make case class serializable * Fixed typo in docs
* Elaborate docs on using traits v classes for modules (#449)Julian Michael2018-10-051-1/+5
|
* minor typo in doc: four->three (#444)Brandon Elam Barker2018-10-021-1/+1
|