aboutsummaryrefslogtreecommitdiff
path: root/stage2/BasicBuild.scala
Commit message (Collapse)AuthorAgeFilesLines
* better name for DirectoryDependencyChristopher Vogt2016-06-191-2/+2
| | | | | seems to be more precise than BuildDependency, hence hopefully more readable also cleaned up Scaffolding and added DirectoryDependency example
* built-in plugin structure improvementsChristopher Vogt2016-06-191-12/+5
| | | | | | - move plugins into cbt namespace - enable scalac warnings in builds by default - merged language flags into AdvancedScala trait
* simplify logic that delegates to test build and runs itChristopher Vogt2016-06-191-5/+6
|
* add support for compile time only dependenciesChristopher Vogt2016-06-151-1/+4
|
* Get rid of Build default imports to reduce noise in build files. This also ↵Christopher Vogt2016-06-151-2/+1
| | | | changes builds from using immutable.Seq to using Predef.Seq in favor of simplicity over purity. This has been discussed on gitter.
* turn Build base classes into traits for less verbosity and uniform usage ↵Christopher Vogt2016-06-151-2/+5
| | | | with any other plugin
* scalajs cross project support as pluginKatrin Shechtman2016-06-131-7/+5
|
* add r alias for runChristopher Vogt2016-05-031-0/+1
|
* Convenience factory methods for ResolversChristopher Vogt2016-05-031-3/+4
|
* Support recursively running tasks across all builds in transitive dependenciesChristopher Vogt2016-04-281-0/+48
|
* Reproducible builds, composing different CBT version and various improvementsChristopher Vogt2016-04-281-19/+19
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | One large commit, because it is was hard to do these things in isolation or to separate them now. CBT now knows how to load other versions of itself - Support for reproducible builds (!), by providing a CBT git URL and hash to tie build to - Support for composing builds using different CBT versions (!) - introduce (in compatibility/) Java interfaces all CBT versions need to stay compatible with, so they can talk to each other. And put extension methods to these interfaces in cbt package object Class loading - add some sanity checks for class loading - improve class loader invalidation to fix bugs - implement caching in Java land class loaders. In particular to prevent the system class loader to repeatedly generate ClassNotFound exceptions in each sink of the class loader DAG for non JDK classes (meaning major speed up for projects with many classes). - getting rid of transient class loader cache unifying into "persistent" one instead (which is still wrong as invalidation eventually needs to invalidate entire sub graphs of the class loading DAG, not single class loaders. Seems like we'll have to abandon the hashmap based approach and tie caching to dependency objects) Other Caching - cache dependencies extracted from xml files, which was one major time killer, but invalidate cache when cbt changed (maven dependency user facing api needs simplification now!) - memorize last successful compile time in the file system rather than memory, to guard against unnecessary recompiling even across launches (or when using cbt direct) Structural improvements - Factor out ClassLoaderCache on Java land into its own class. - Port MultiClassLoader to Java land, to better compose classloaders in NailgunLauncher. - Remove many global constants and variables (in object paths and in NailgunLauncher) and pass them through instead. Needed for composing of builds. - move more code from resolver into Lib for less entanglement with classes (needed to compatibility interfaces) and better re-usability - remove canBeCached. Everything can be cached now, but we need to be careful about correct invalidation. - remove build announcing produced jars. We can add if ever needed. - change callNullary to return exit code instead of Unit as preparation for next commit introducing "recursive" ScalaTest - Makes ScalaTest support work (still a bit too inflexible, but mostly works well)
* only run tests if there are actually tests to run (useful for recursively ↵Christopher Vogt2016-04-281-1/+3
| | | | running tests in nested projects)
* Build mixin with recommended settingsChristopher Vogt2016-04-281-1/+12
|
* move soure file filterin logic into library for reusabilityChristopher Vogt2016-04-281-8/+2
|
* cross building and automatic snaphot idsChristopher Vogt2016-04-071-1/+4
| | | | | Adds support for cross building for multiple scala versions And for automatically appending -SNAPSHOT to the id, when publishing a snapshot.
* Fix stage2 classloader not being stored in transient cacheChristopher Vogt2016-04-071-0/+2
| | | | | and thus being re-created on second and subsequent runs. Also use classloader from cache for Builds rather than new one, which should properly make Build dependencies work.
* Correctly interact with build in cwd instead of loading it's managed build ↵Christopher Vogt2016-04-061-2/+2
| | | | in case of a BuildBuild.
* Implement alternative resolversChristopher Vogt2016-04-031-20/+7
| | | | | | | | | | | | This commit also - requires Dependencies to explicitly implement canBeCached - unifies some logic for dependency downloading - moves SBT-like dependency DSL into its own trait - error message showing build directory for exceptions in builds Not splitting this up in favor of faster progress to 1.0. The user facing API can probably be slightly improved using implicits inside of BasicBuild, but we can do that later.
* propagate info if cbt has changed across builds, so they can be re-compiledChristopher Vogt2016-04-021-4/+4
|
* only compile and only produce jars if there are actually files.Christopher Vogt2016-04-021-3/+3
| | | | This seem desirable, but also fixes a test failure for which I have no idea why it didn't fail before but now.
* Makes zinc usage smarter, so we do not need to call it when no files changed ↵Christopher Vogt2016-03-301-22/+15
| | | | | | (and safe up to 0.1s for each call) There still seem to be 2 bugs related to CBT development in the code. One if you simpy save a stage1 file unchanged and re-run cbt, it fails to call Stage2.run reflectively. Also in case of compile errors in stage1, a TrappedExitCode exception is thrown and not caught.
* replace Scala reflection with Java reflection seems to fix the weird ↵Christopher Vogt2016-03-281-3/+1
| | | | exceptions that happened in the previous commit. Also gets rid of scala.reflect dependency in stage2.
* get rid of ammonite dependencyChristopher Vogt2016-03-191-2/+0
|
* Refactored ClassLoaderCache to use key locked cache to pave the way for ↵Christopher Vogt2016-03-191-2/+3
| | | | caching classloaders hierarchically without deadlocks
* make scaffold work for simple caseChristopher Vogt2016-03-191-5/+1
|
* sort transitiveDependencies by exported classpath for hopefully more ↵Christopher Vogt2016-03-121-0/+1
| | | | determinism between dev machines and circle ci
* Merge remote-tracking branch 'origin/master' into farmdawg/zinc-exit-codesChristopher Vogt2016-03-121-7/+18
|\ | | | | | | | | | | # Conflicts: # stage1/Stage1Lib.scala # stage1/resolver.scala
| * Improved how to express dependenciesChristopher Vogt2016-03-121-7/+18
| | | | | | | | | | | | Add - Constructor syntax for cross-scala-version dependencies (as rightfully requested on reddit) and encouraged over SBT's still supported operator syntax - Add support for classifiers other than "sources"
* | minor simplification renamesChristopher Vogt2016-03-121-3/+2
| |
* | Clean up some of the zinc invocation.Matt Farmer2016-03-121-1/+1
| |
* | Whitespace removal.Matt Farmer2016-03-121-3/+3
|/
* Split ClassLoader classes into separate files and a few fixesChristopher Vogt2016-03-111-2/+2
|
* normalize Build's projectDirectory and stop using context.cwdChristopher Vogt2016-03-081-3/+3
|
* cleanup: whitespace changes, separated more things into their own files, use ↵Christopher Vogt2016-03-071-0/+164
++ for strings everywhere. Added ++ method to File and URL and use it in many places