aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fix path of file in error messageChristopher Vogt2017-03-061-1/+1
|
* Merge pull request #391 from cvogt/publish-improvementsJan Christopher Vogt2017-03-0611-46/+65
|\ | | | | Publish improvements
| * Add plugin to publish to ArtifactoryChristopher Vogt2017-03-062-2/+14
| |
| * rename PublishDynamic to more appropriate SnapshotVersionChristopher Vogt2017-03-062-7/+7
| |
| * support publishing to basic-auth protected maven repositoriesChristopher Vogt2017-03-063-11/+15
| |
| * support resolving unsigned dependenciesChristopher Vogt2017-03-063-10/+10
| |
| * return Seq[URL] from publish task and \n separate Seqs in std outChristopher Vogt2017-03-064-15/+18
| |
| * fix package bugChristopher Vogt2017-03-061-1/+1
| |
* | Merge pull request #389 from TsoBako/masterJan Christopher Vogt2017-03-061-1/+1
|\ \ | |/ |/| Fix error with zinc library (wrong md5)
| * Fix error with zinc library (wrong md5)Igor Tsalko2017-03-071-1/+1
|/
* Merge pull request #387 from cvogt/proguard-whitespaceJan Christopher Vogt2017-03-064-157/+173
|\ | | | | improve whitespace readability in proguard plugin
| * improve whitespace readability in proguard pluginChristopher Vogt2017-03-054-157/+173
|/
* Merge pull request #384 from cvogt/proguard-libJan Christopher Vogt2017-03-0414-440/+494
|\ | | | | Proguard lib
| * fix fish completions and add comment how to combine with fzfChristopher Vogt2017-03-041-1/+1
| |
| * separate type-safe proguard wrapper into self-contained libraryChristopher Vogt2017-03-0413-439/+493
| | | | | | | | also make logic to maintain auto-generated sections re-usable
* | Merge pull request #383 from cvogt/sonatypeJan Christopher Vogt2017-03-0413-178/+144
|\| | | | | Sonatype
| * handle trying to package / publish with no source files via exceptionChristopher Vogt2017-03-044-18/+16
| | | | | | | | this saves us from having to do conditionals in several places
| * improve sonatype pluginChristopher Vogt2017-03-047-117/+79
| | | | | | | | | | | | - reduce required tasks in favor of using SonatypeLib.copy - improve log messages - automatically release non-snapshots after uploading
| * use scoping instead of hard coded snapshot taskChristopher Vogt2017-03-042-8/+3
| |
| * make plugin aliases available in Plugin buildsChristopher Vogt2017-03-042-15/+24
| |
| * [sonatype] unify sonatype plugin code-style with rest of cbtChristopher Vogt2017-03-044-42/+44
| | | | | | | | | | | | | | - indent parameter lists like other cbt code - avoid stripMargin for style reasons also add logger, eventhough not used right now
* | Merge pull request #379 from cvogt/chrisJan Christopher Vogt2017-03-048-27/+171
|\| | | | | Chris
| * do not print () when evalingChristopher Vogt2017-03-042-2/+2
| |
| * search-class task for searching class on mavenChristopher Vogt2017-03-041-1/+4
| |
| * fix callReflective not finding special char tasks namesChristopher Vogt2017-03-041-6/+8
| | | | | | | | and better error message when top-level method not being found
| * more appropriate name for PublishMaven pluginChristopher Vogt2017-03-031-1/+2
| |
| * more appropriate file nameChristopher Vogt2017-03-031-0/+1
| |
| * define central publish tasks, so multiple trait can add to itChristopher Vogt2017-03-031-0/+2
| |
| * fix trying to access non-existent methods of Unit not erroringChristopher Vogt2017-03-031-11/+10
| |
| * TypeTag instead of ClassTag for DynamicOverride as preparation for ↵Christopher Vogt2017-03-021-4/+6
| | | | | | | | supporting multiple traits
| * add design decision documentation about various CBT featuresChristopher Vogt2017-03-021-3/+137
|/
* Merge pull request #361 from cvogt/proguardJan Christopher Vogt2017-03-0116-4/+814
|\ | | | | Proguard
| * add comprehensive, type-safe proguard pluginChristopher Vogt2017-03-0110-2/+735
| | | | | | | | | | this also demonstrates how to programmatically generate an extensive, type-safe api for a stringly-typed interface
| * add capture_args macro for type-safe embedding of stringly typed apisChristopher Vogt2017-03-013-0/+62
| |
| * fix scalafmt not printing number of formatted filesChristopher Vogt2017-03-011-1/+2
| |
| * add / helper also for Path anticipating migration to nioChristopher Vogt2017-03-011-0/+10
| |
| * introduce libraries helper objectChristopher Vogt2017-03-012-1/+5
|/
* Merge pull request #360 from cvogt/uber-jarJan Christopher Vogt2017-02-283-103/+63
|\ | | | | simplify uberJar plugin and activate recursiveDelete lib function
| * simplify uberJar plugin and activate recursiveDelete lib functionChristopher Vogt2017-02-283-103/+63
| |
* | Merge pull request #359 from cvogt/jar-refactorJan Christopher Vogt2017-02-286-77/+72
|\| | | | | Jar refactor
| * jar / doc refactorChristopher Vogt2017-02-286-77/+72
|/ | | | | | - split out manifest and scaladoc logic - refactor lib calls from inheritance layer - only strip project directory prefix from individually specified files
* Merge pull request #358 from cvogt/chrisJan Christopher Vogt2017-02-2835-153/+206
|\ | | | | various changes
| * human readable toString for BuildsChristopher Vogt2017-02-271-0/+1
| |
| * equality for BoundMavenDependencyChristopher Vogt2017-02-271-0/+5
| |
| * move default sourceFileFilter into lib for less OO couplingChristopher Vogt2017-02-272-2/+5
| |
| * remove dead codeChristopher Vogt2017-02-271-7/+0
| |
| * minor logging improvementsChristopher Vogt2017-02-273-3/+8
| |
| * use `name` instead of `projectName` as it is more universal and theChristopher Vogt2017-02-2710-13/+13
| | | | | | | | term `project` is probably going away in cbt.
| * fix results of Seq of builds not being printedChristopher Vogt2017-02-272-11/+11
| |
| * java concat array helper method (just in case)Christopher Vogt2017-02-271-0/+6
| |