aboutsummaryrefslogtreecommitdiff
path: root/build/build.scala
Commit message (Collapse)AuthorAgeFilesLines
* fix recursive and make cbt package jarsChristopher Vogt2017-06-171-1/+1
|
* add process library with extracted and new functionsChristopher Vogt2017-06-151-1/+1
|
* change IntelliJ plugin draft to follow now recommend plugin styleChristopher Vogt2017-04-061-1/+2
|
* Add Tut pluginChristopher Vogt2017-04-021-0/+1
|
* Add Scalatex pluginChristopher Vogt2017-04-021-0/+1
|
* scalatest plugin now does not need import anymoreChristopher Vogt2017-04-021-0/+1
|
* type-safe aliases for non cbt librariesChristopher Vogt2017-04-021-1/+1
|
* type-safe aliases for portsChristopher Vogt2017-04-011-1/+2
|
* start modularizing cbt into librariesChristopher Vogt2017-03-271-3/+6
| | | | | | | | | | this extracts certain parts of cbt into stand-alone libraries, which can be published to maven and used outside of cbt. This also adds scalariform for these parts of the code. This slows down cbt’s own build a lot because of the number of projects involved! So we’ll follow this by a bunch of performance tweak commits.
* Unify reflectively loading builds from directories.Christopher Vogt2017-03-201-1/+13
| | | | | | | | | | THis is mostly cleanup and a little bit feature. Before it was done partially in 3 places, BuildBuild, loadRoot and GitDependency. Now DirectoryDependencies also support referencing sub-builds. Also introduce scalariform for the first few files of cbt's core code :).
* better error than NullPointerException when directory does not existChristopher Vogt2017-03-191-1/+1
|
* use standard cbt scala xml versionChristopher Vogt2017-03-191-1/+1
|
* Get rid of the hacky "essential" plugins separationChristopher Vogt2017-03-191-1/+1
| | | | | | | Let’s keep move them back into stage2 again instead for reduction of complexity, cbt build speed and convenience of fewer manual dependencies. And for that let cbt just include eval from the start.
* fix file watching for realChristopher Vogt2017-03-121-1/+0
| | | | | | | 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
* publish local for cbt itselfChristopher Vogt2017-03-111-2/+2
|
* extract re-usable parts of cbt’s own build into Shared pluginChristopher Vogt2017-03-111-17/+9
|
* use `name` instead of `projectName` as it is more universal and theChristopher Vogt2017-02-271-1/+1
| | | | term `project` is probably going away in cbt.
* fix linkage error caused by scalac 2.10 combined with lib 2.11Christopher Vogt2017-02-271-2/+1
| | | | | when in fact cbt’s source code does not depend on scalac/zinc, but it only loads it via reflection
* Remove version from context, we can now use dynamic overridesChristopher Vogt2016-11-091-1/+1
|
* Upgrade zinc to 0.3.12Christopher Vogt2016-11-091-1/+1
|
* basic setup to allow publishing cbtChristopher Vogt2016-07-061-1/+16
|
* Get rid of Build default imports to reduce noise in build files. This also ↵Christopher Vogt2016-06-151-3/+0
| | | | 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-1/+1
| | | | with any other plugin
* Convenience factory methods for ResolversChristopher Vogt2016-05-031-1/+1
|
* Fix building cbt as a cbt projectChristopher Vogt2016-04-291-2/+2
|
* Reproducible builds, composing different CBT version and various improvementsChristopher Vogt2016-04-281-6/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* Implement alternative resolversChristopher Vogt2016-04-031-5/+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.
* Add build file to build CBT with itself. Needed to be able to consume CBT as ↵Christopher Vogt2016-04-021-0/+18
a library.