aboutsummaryrefslogtreecommitdiff
path: root/stage2/BasicBuild.scala
Commit message (Collapse)AuthorAgeFilesLines
...
* support flatClassLoader and run at Dependency levelChristopher Vogt2017-02-141-28/+2
|
* implicitly pass classloader, might make code easierChristopher Vogt2017-02-141-6/+5
| | | | | and prepares for allowing `run` and `runFlat` at Dependency instead of Build level
* use target directory rather than projectDirectory as caching keyChristopher Vogt2017-02-131-1/+1
| | | | | | makes more sense as multiple projects with the same projectDirectory but different sources and targets can make sense e.g. for sbt directory structure, etc
* easier setting of projectDirectory in sub-buildsChristopher Vogt2017-02-131-2/+2
| | | | | by replacing context.projectDirectory by workingDirectory and using it as the default but allowing it to being overridden
* Add support for nested builds and use it to replace cross compilationChristopher Vogt2017-02-131-2/+3
| | | | | | | | command which was previously hard-coded This will allow multi-project builds, too but we should first fix caching across instances and GitDependencies on sub-builds within other repositories.
* make sure jar, tests and main classes use the right directoriesChristopher Vogt2017-02-131-4/+5
|
* support for flat classloader and enhanced resources exampleChristopher Vogt2017-02-131-3/+22
|
* Merge pull request #314 from cvogt/fix-update-bugsJan Christopher Vogt2017-02-101-39/+16
|\ | | | | better caching and change propagation fixing link-time errors
| * idempotent change propagationChristopher Vogt2017-02-091-12/+9
| | | | | | | | | | | | using lastModified instead of a non-idempotent needsUpdate flag this fixes a bug where dependees would not be rebuilt if cbt exited or was killed after dependencies were already rebuilt.
| * memoize task results across classes within a single runChristopher Vogt2017-02-091-24/+5
| |
| * make full dependencies available to compile instead of only classpathChristopher Vogt2017-02-011-6/+5
| | | | | | | | | | this will make it possible to access lastModified times and cache them in the following commits
| * Merge separate hashmaps for persistent cache into oneChristopher Vogt2017-02-011-1/+1
| | | | | | | | | | | | | | This isn’t type-safe, but re-using that same hashmap for both keys and classloaders allows to reduce the number of members in Context. Also we can re-use the same hashMap for other things as well in the coming commits, e.g. timestamps.
* | Moved source file filter to build.mchav2016-12-231-2/+5
|/
* minor cleanups regarding ContextChristopher Vogt2016-11-131-2/+5
|
* Merge pull request #311 from cvogt/remove-dot-copyJan Christopher Vogt2016-11-131-2/+10
|\ | | | | reduce usage of .copy as preparation to replace it with newBuild
| * reduce usage of .copy as preparation to replace it with newBuildChristopher Vogt2016-11-131-2/+10
| |
* | Assert right build class. Fixes #174Christopher Vogt2016-11-131-1/+10
|/
* Upgrade zinc to 0.3.12Christopher Vogt2016-11-091-1/+1
|
* Add support for dynamic re-configuration.Christopher Vogt2016-11-081-0/+4
| | | | | The exact precedence rule of override code vs original code may still need to be tweaked as we go along.
* add context based task result cacheChristopher Vogt2016-11-081-0/+17
|
* Add support for resources (still limited by CBT's classloader visibility)Christopher Vogt2016-11-031-1/+5
|
* add repl task to BaseBuildrockjam2016-10-051-8/+24
|
* make BuildInterfaces an abstract class so it can have default valuesChristopher Vogt2016-10-031-1/+1
| | | | | and it becomes slightly easier to maintain source compatibility between cbt versions
* clean up main class discovery mechanism and offer interactive choiceChristopher Vogt2016-10-021-6/+8
| | | | if multiple main classes are found
* Added run with package discoveryChavXO2016-09-291-1/+6
|
* rename apiTarget to more appropriate name docTarget as the task isChristopher Vogt2016-09-281-1/+1
| | | | called docJar
* include dependencyClasspath in compileClasspath and let docs use it tooChristopher Vogt2016-09-281-2/+3
| | | | | this prevents from forgetting the dependencyClasspath when compileClasspath is used and probably fixes the cp for docs
* add fish shell task name completions and fix bash task name completionsChristopher Vogt2016-09-131-0/+2
|
* Add a bunch of options to try to allow safe usage of cleanChristopher Vogt2016-08-281-2/+7
| | | | | | | try to make tests safer (fixed tests don't have clean yet, nothing has nothing to delete, so current test code would fail)
* Add clean taskChavXO2016-08-281-0/+5
|
* 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.