aboutsummaryrefslogtreecommitdiff
path: root/test
Commit message (Collapse)AuthorAgeFilesLines
* Add a bunch of options to try to allow safe usage of cleanChristopher Vogt2016-08-281-4/+17
| | | | | | | 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/+11
|
* uber-jar plugin implementationrockjam2016-06-241-1/+3
|
* add multi-project example (#158)Jan Christopher Vogt2016-06-241-0/+1
| | | | | | * add multi-project example * add shared build
* Scalafmt plugin implementation (#156)Nikolay Tatarinov2016-06-231-0/+4
| | | | | | | | | | | | | | * 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
* add scalajs example to testsChristopher Vogt2016-06-191-3/+8
|
* 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
* add plugin builds and scalatest example build to being compiled in testsChristopher Vogt2016-06-192-1/+6
|
* Get rid of Build default imports to reduce noise in build files. This also ↵Christopher Vogt2016-06-155-9/+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-153-3/+3
| | | | with any other plugin
* scalajs cross project support as pluginKatrin Shechtman2016-06-133-3/+3
|
* Fix the tests, by adapting to recent CBT changes. (This was easier than I ↵Christopher Vogt2016-06-013-22/+23
| | | | expected)
* Update fixed dependency hash to latestChristopher Vogt2016-06-011-1/+1
|
* add dependency to tests which currently failsChristopher Vogt2016-05-031-0/+2
|
* Convenience factory methods for ResolversChristopher Vogt2016-05-032-47/+47
|
* add test info for currently failing dependencyChristopher Vogt2016-05-021-0/+2
|
* fix test to use repo actually generally availableChristopher Vogt2016-04-291-1/+1
|
* Fix and enable test for reproducible buildsChristopher Vogt2016-04-292-3/+4
|
* Reproducible builds, composing different CBT version and various improvementsChristopher Vogt2016-04-285-21/+87
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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)
* add commented out test case for resolving maven version rangesChristopher Vogt2016-04-281-0/+3
|
* Allow substituting POM variables inside of strings, not only entire elementsChristopher Vogt2016-04-081-1/+3
|
* cross building and automatic snaphot idsChristopher Vogt2016-04-071-1/+1
| | | | | Adds support for cross building for multiple scala versions And for automatically appending -SNAPSHOT to the id, when publishing a snapshot.
* Correctly interact with build in cwd instead of loading it's managed build ↵Christopher Vogt2016-04-061-1/+1
| | | | in case of a BuildBuild.
* Finally get rid of JDK 8 dependenciesChristopher Vogt2016-04-041-1/+1
|
* Implement alternative resolversChristopher Vogt2016-04-032-24/+63
| | | | | | | | | | | | 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-1/+1
|
* better error messages in case of messed up groupIds, artifactIds or versionsChristopher Vogt2016-04-021-0/+24
|
* Improve cbt's maven resolver to handle variable substitutions for pom xml ↵Christopher Vogt2016-04-022-2/+6
| | | | tag contents
* Typed passing of values from Stage1 to Stage2Christopher Vogt2016-03-301-6/+6
| | | | (thing can still be cleaned up)
* replace Scala reflection with Java reflection seems to fix the weird ↵Christopher Vogt2016-03-281-5/+5
| | | | exceptions that happened in the previous commit. Also gets rid of scala.reflect dependency in stage2.
* Refactored ClassLoaderCache to use key locked cache to pave the way for ↵Christopher Vogt2016-03-191-1/+1
| | | | caching classloaders hierarchically without deadlocks
* Add support for git dependenciesChristopher Vogt2016-03-182-1/+6
| | | | pair coded with @chavxo
* fixed previously too naive pom inheritance logic to properly handle ↵Christopher Vogt2016-03-171-1/+3
| | | | | | properties and dependencyManagement pom inheritance features pair-coded with @chavxo
* Improved how to express dependenciesChristopher Vogt2016-03-122-2/+13
| | | | | | 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"
* re-enable usage page testsChristopher Vogt2016-03-111-14/+14
|
* Split ClassLoader classes into separate files and a few fixesChristopher Vogt2016-03-111-3/+4
|
* add simple multi project build test and comment out failing test casesChristopher Vogt2016-03-085-3/+28
|
* cleanup: whitespace changes, separated more things into their own files, use ↵Christopher Vogt2016-03-071-57/+60
| | | | ++ for strings everywhere. Added ++ method to File and URL and use it in many places
* trap and pass exit codes throug the app, pass logger on to tests, remove the ↵Christopher Vogt2016-03-061-14/+17
| | | | lib. qualification from Stage1 for better readability
* integrate circleciChristopher Vogt2016-03-061-0/+1
|
* CBT Version 1.0-BETAChristopher Vogt2016-03-043-0/+82