summaryrefslogtreecommitdiff
path: root/scalalib
Commit message (Collapse)AuthorAgeFilesLines
* fix buildLi Haoyi2018-04-061-7/+7
|
* Universal script generation for assembly, launcher, and release (#264)Pierre Kisters2018-03-291-3/+2
|
* Windows client/server improvements (#262)Robby2018-03-291-1/+1
|
* use repositories from the mill build to bootstrap idea project generation (#263)Sheng Chen2018-03-281-3/+3
|
* Merge branch 'master' of github.com:lihaoyi/millLi Haoyi2018-03-277-15/+141
|\
| * add exclusions and custom configuration to dependencies (#254)Sheng Chen2018-03-267-15/+141
| | | | | | | | | | | | * doc to address #187 and #246 * add exclusions and custom configuration to dependencies and tests
* | Ensure that transitive ivy jars are not directly aggregated under a module's ↵Li Haoyi2018-03-262-10/+37
|/ | | | | | `runClasspath`; only the ivy coordinates are aggregated, and every module resolves it's own set of ivy jars using coursier, which avoids duplicate jars entering the classpath through ivy Fixes https://github.com/lihaoyi/mill/issues/211
* Upgrade Ammonite to 1.1.0-3-73d5734.Robby2018-03-261-1/+1
|
* Bump up Ammonite in ScalaModule.Robby2018-03-261-1/+1
|
* Merge branch 'master' of github.com:lihaoyi/millLi Haoyi2018-03-255-7/+13
|\
| * 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-243-5/+4
| |
| * Make docJar use compileClasspath instead of runClasspathLi Haoyi2018-03-221-1/+1
| |
* | bump upickle, ammonite versionsLi Haoyi2018-03-251-1/+5
| |
* | update to latest Ammonite using latest upickle RCLi Haoyi2018-03-242-6/+6
|/
* Support scala milestone releases (with fixes for 2.13.0-M3) (#247)Nikolay Tatarinov2018-03-205-7/+29
| | | | | | | | | | * 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
* Batch (.bat) file generation for assembly, launcher, and release (#243)Robby2018-03-201-1/+3
|
* mergeLi Haoyi2018-03-193-6/+10
|\
| * Java 9 optimization by caching rt.jar (#239)Robby2018-03-193-5/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * Upgraded Ammonite to 1.0.5-7-f032887 that includes a Java 9 performance optimization for mill's client-server mode (lihaoyi/Ammonite#773). * Java 9 optimization for interactive mode by caching rt.jar. * Refactored based on @lihaoyi's comments on #239. * Removed client side rt.jar caching. * Propagatio of home path from Cli. * Propagation, propagation, propagation!
| * Propagate more things into Tests of ScalaModule (#236)Gabriele Petronella2018-03-191-0/+3
| |
* | properly pass arguments to forked tests in a way that doesn't botch whitespacesLi Haoyi2018-03-181-8/+8
|/
* Fixes for non-interactive (client/server) mode on Java 9 (#221)Robby2018-03-132-3/+3
| | | | | | * Fixes for client/server mode on Java 9. * Upgraded ammonite to 1.0.5-4-c0cdbaf.
* Changes to make {clientserver,main,scalalib,scalajslib}.test work under Java ↵Robby2018-03-101-2/+2
| | | | | | | | | | 9 (#217) * Append "exported rt.jar" when creating URLClassLoader. * Disabled tests involving Scala 2.10 & 2.11 and nashorn. * Use java.net.URLClassLoader.
* ScalaModule: Added ivyDepsTree command (#213)Shani Elharrar2018-03-091-0/+15
|
* include compileIvyDeps when generating intellij projectsLi Haoyi2018-03-071-1/+1
|
* fix #185 include "optional" artifacts if they exist (#209)Francis De Brabandere2018-03-071-12/+29
| | | | this brings the mill code in line with ammonite see https://github.com/lihaoyi/Ammonite/pull/713/files
* fix optional xml tags in POM (#198)Nikolay Tatarinov2018-03-062-32/+222
|
* Add out/{module_name} as a content root in generated IntelliJ project (#196)Jeremy Apthorp2018-03-052-2/+10
|
* factor out Dependency creation in Lib so it can be reused (#137)Andrew Richards2018-03-031-17/+21
| | | | | | | | | | * factor out Dependency creation in Lib so it can be reused * fix indenting * really fix indenting * third time lucky
* Bugfix/version contol (#192)Guillaume Massé2018-03-033-119/+198
| | | | | | * Fix several issues in VersionControl & add Test * Move VersionControl to it's own file
* Split out `upstreamAssembly` from `assembly`Li Haoyi2018-03-032-28/+32
| | | | Also re-write `Jvm.createAssembly` to allow incremental assembly construction. This should allow much faster assembly creation in the common case where upstream dependencies do not change
* make mainClass discovery work in ScalaJSModule#runLi Haoyi2018-03-031-19/+22
| | | | Also disable ScalaJSModule#runMain, since the official Scala.js-SBT plugin does not support it and it requires an expensive re-linking every time it is run.
* share repositories between ScalaWorker and ScalaModuleLi Haoyi2018-03-022-13/+12
|
* Allow people to substitute in their own implementation of ↵Li Haoyi2018-03-022-6/+13
| | | | ScalaModule#scalaWorker to configure resolvers/etc.
* Add dsl for SCM (now called VersionControl) (#168)Guillaume Massé2018-02-284-9/+165
| | | The scm url syntax is a source of confusion for developper. I added VersionControl.github() to simplify this process. We can add other common VersionControl url scheme like Bazar, etc.
* Add predefined licenses from spdx (#144)Guillaume Massé2018-02-263-9/+480
| | | | | | * Add predefined licenses from spdx * Fix License usages
* A few attempts at micro-optimizing the current hot spotsLi Haoyi2018-02-253-3/+3
|
* GenIdea: added generation of .idea/scala_compiler.xml (#151)Robby2018-02-251-6/+56
| | | | | | * Added generation of .idea/scala_compiler.xml (Scalac compiler plugins and options). * More robust evaluation of tasks because results may be empty, which causes a match error.
* 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
|
* fix scala sdk annotation in genideaLi Haoyi2018-02-241-1/+1
|
* better error messages when you run interactive commands without -iLi Haoyi2018-02-241-13/+23
|
* Clean up the provisional client-server code with unit tests and proper ↵Li Haoyi2018-02-242-7/+28
| | | | | | | | file-sockets Seems to work well enough for interactive scala consoles, though still not Ammonite Also Added ScalaModule#launcher and re-worked our build.sc file to use it
* Allow specifying classifiers in ivy deps (#159)Jeremy Apthorp2018-02-242-7/+31
|
* support multiple test frameworks (#148)Nikolay Tatarinov2018-02-223-8/+8
| | | support multiple test frameworks
* GenIdea updates including a fix for #147 (#149)Andrew Richards2018-02-214-30/+71
| | | | | | | | | | | | | | | | | | | | | | | | * 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
* fix-testsLi Haoyi2018-02-212-5/+5
|
* First pass at cleaning up evaluator caching systemLi Haoyi2018-02-201-2/+2
|
* Basic working server-client model based on flat files communicationsLi Haoyi2018-02-191-7/+0
|
* Better error messages when publishing to Sonatype (#138)Andrew Richards2018-02-192-1/+4
|