aboutsummaryrefslogtreecommitdiff
path: root/stage2/BuildBuild.scala
Commit message (Collapse)AuthorAgeFilesLines
* fix file watching for realChristopher Vogt2017-03-121-2/+1
| | | | | | | last file watching update didn’t work well enough. This now - rips out barbary watch service as it seems buggy crashing the jvm - make cbt exclusively write files to watch to a file - uses fswatch instead watching all files in that file
* revamp loop featureChristopher Vogt2017-03-121-3/+4
| | | | | | | | | | | | | | | | | | | | | now CBT and builds pass their file names to the current build via the context. The build then simply blocks until any file changes. Then it returns with a special exit code, which the bash script picks up and restarts CBT. Thats works well for looping over project files. It works less well for looping over builds and CBT itself. For this a build has to success once, so that the .cbt-loop.tmp file exists. Then looping works for cbt and builds, but the file list is not updated in case of compile errors, etc. Fixes - https://github.com/cvogt/cbt/issues/406 - https://github.com/cvogt/cbt/issues/405 - https://github.com/cvogt/cbt/issues/202 - https://github.com/cvogt/cbt/issues/50 - https://github.com/cvogt/cbt/issues/22 We should improve for 1.0 in https://github.com/cvogt/cbt/issues/419 to handle looping over build files and cbt itself smarter.
* fix broken format stringChristopher Vogt2017-03-111-1/+1
|
* Google Java Format pluginChristopher Vogt2017-03-111-0/+1
|
* Make GitDependency and DirectoryDependency simply return Build objectsChristopher Vogt2017-03-111-4/+4
|
* extract re-usable parts of cbt’s own build into Shared pluginChristopher Vogt2017-03-111-0/+7
|
* make plugin aliases available in Plugin buildsChristopher Vogt2017-03-041-14/+21
|
* add comprehensive, type-safe proguard pluginChristopher Vogt2017-03-011-0/+1
| | | | | this also demonstrates how to programmatically generate an extensive, type-safe api for a stringly-typed interface
* top-level instead of anonymous classesChristopher Vogt2017-02-191-0/+2
| | | | | to allow these to work with the dynamic configuration features .copy and DynamicOverride
* allow DirectoryDependencies on BuildBuildsChristopher Vogt2017-02-181-1/+8
| | | | | | | | | this fixes a bug where finalBuild would over eagerly go down all the way down to the outermost build instead of stopping at the one requested. Now it checks the new argument and stops there. This is necessary to allow having one build depend on another build in order to embed it in a type-safe way and have access to it’s tasks.
* add package to generated Build in build.scala and in-package discoveryChristopher Vogt2017-02-151-8/+22
| | | | | | | | | | | This should allow for build to add other builds to their dependencies and interact with them in a type-safe way. And ever regardless it seems like good practice to never have the same class existing in the same package or the top-level package even if they don’t end up on the same classpath. This might also help make stack traces easier to understand. Also improve error messages for mistakes with the build class, e.g. constructor, super classes, etc.
* add typed constants for build directory and file and use them everywhereChristopher Vogt2017-02-151-6/+6
|
* implicitly pass classloader, might make code easierChristopher Vogt2017-02-141-2/+2
| | | | | and prepares for allowing `run` and `runFlat` at Dependency instead of Build level
* easier setting of projectDirectory in sub-buildsChristopher Vogt2017-02-131-1/+1
| | | | | by replacing context.projectDirectory by workingDirectory and using it as the default but allowing it to being overridden
* memoize task results across classes within a single runChristopher Vogt2017-02-091-2/+1
|
* Remove dead code. It does not look like the elses are needed.Christopher Vogt2016-11-131-15/+5
| | | | Because BuildBuild is only created if there is a build folder.
* minor refactoring using shorter namesChristopher Vogt2016-11-131-5/+5
|
* Assert right build class. Fixes #174Christopher Vogt2016-11-131-0/+5
|
* Add support for dynamic re-configuration.Christopher Vogt2016-11-081-3/+14
| | | | | The exact precedence rule of override code vs original code may still need to be tweaked as we go along.
* this doesn't need managedContextChristopher Vogt2016-11-081-8/+9
|
* Sonatype release plugin (#247)Nikolay Tatarinov2016-10-031-0/+1
|
* WartRemover plugin implementation (#167)Mario Pastorelli2016-09-141-0/+1
|
* load builds of built-in plugins lazilyChristopher Vogt2016-09-131-6/+6
|
* better error message for missing build.scala and missing class BuildChristopher Vogt2016-09-121-6/+8
|
* work correctly in the presence of empty build foldersChristopher Vogt2016-09-121-1/+5
|
* better error message when you forget to extend BaseBuildChristopher Vogt2016-09-121-39/+40
|
* uber-jar plugin implementationrockjam2016-06-241-0/+1
|
* Scalafmt plugin implementation (#156)Nikolay Tatarinov2016-06-231-0/+1
| | | | | | | | | | | | | | * scalariform: improve logging, declare tasks final * scalafmt plugin implementation * add scalafmt and scalariform plugins and examples to tests * fix logging guarded logging behaviour * add notes about formatting check to README * fix compilation error in examples
* scalariform plugin naive implementationrockjam2016-06-201-0/+1
|
* refactor/simplify scalaJs plugin and exampleChristopher Vogt2016-06-191-0/+1
| | | | | | - Restructure code as 1 library case class and 1 Build mixin trait. A library is generally easier to understand and could be re-used independently. 1 trait seems simpler than several here. - Let not the plugin create the multi-project build, but the user project manually. I think while this adds some minor code overhead it is much simpler to understand. Fewer tasks and other moving parts needed. - Remove verbose nested sbt-style folder structure. It's simpler without it :).
* 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
* separate sbt layout and scalatest plugins and create a more general plugin ↵Christopher Vogt2016-06-151-6/+11
| | | | architecture
* 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.
* support for git dependencies on projects in subdirectoriesChristopher Vogt2016-06-151-6/+7
|
* turn Build base classes into traits for less verbosity and uniform usage ↵Christopher Vogt2016-06-151-1/+1
| | | | with any other plugin
* Reproducible builds, composing different CBT version and various improvementsChristopher Vogt2016-04-281-17/+55
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* Fix stage2 classloader not being stored in transient cacheChristopher Vogt2016-04-071-9/+7
| | | | | 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-4/+4
| | | | in case of a BuildBuild.
* Better error message when build folder does not contain Build classChristopher Vogt2016-04-031-0/+2
|
* Implement alternative resolversChristopher Vogt2016-04-031-1/+4
| | | | | | | | | | | | 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.
* replace two level classloader with hierarchyChristopher Vogt2016-03-191-1/+5
| | | | | | replace two level classloader (one for non-cachable dependencies with a cached parent one for cachable ones) with a hierachy of classloaders corresponding this should eventually allow re-using CBT's classloader between stage1 and stage2 this change breaks the ScalaTest support for now
* minor enhancements to classloadingChristopher Vogt2016-03-191-1/+1
|
* Add feature for starting the Scala REPL in arbitrary versions, propagate ↵Christopher Vogt2016-03-091-1/+1
| | | | logger as implicits
* cleanup: whitespace changes, separated more things into their own files, use ↵Christopher Vogt2016-03-071-1/+2
| | | | ++ for strings everywhere. Added ++ method to File and URL and use it in many places
* CBT Version 1.0-BETAChristopher Vogt2016-03-041-0/+17