Commit graph

382 commits

Author SHA1 Message Date
f9fc84326e
Merge branch 'master' into dependabot/maven/org.projectlombok-lombok-1.18.2 2018-08-25 15:51:44 +01:00
d662ec6df7
Merge pull request #41 from kemitix/dependabot/maven/org.assertj-assertj-core-3.11.0
Bump assertj-core from 3.10.0 to 3.11.0
2018-08-25 15:50:34 +01:00
abe1f7300b Remove maven wrapper 2018-08-25 15:43:08 +01:00
3b778f29a3 travis: don't use maven wrapper 2018-08-25 15:42:34 +01:00
dependabot[bot]
3803bc7b67
Bump assertj-core from 3.10.0 to 3.11.0
Bumps [assertj-core](https://github.com/joel-costigliola/assertj-core) from 3.10.0 to 3.11.0.
- [Release notes](https://github.com/joel-costigliola/assertj-core/releases)
- [Commits](https://github.com/joel-costigliola/assertj-core/compare/assertj-core-3.10.0...assertj-core-3.11.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-08-23 14:08:11 +00:00
dependabot[bot]
687daee241
Bump lombok from 1.18.0 to 1.18.2
Bumps [lombok](https://github.com/rzwitserloot/lombok) from 1.18.0 to 1.18.2.
- [Release notes](https://github.com/rzwitserloot/lombok/releases)
- [Changelog](https://github.com/rzwitserloot/lombok/blob/master/doc/changelog.markdown)
- [Commits](https://github.com/rzwitserloot/lombok/compare/v1.18.0...v1.18.2)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-08-23 14:08:09 +00:00
dependabot[bot]
42ea2a26ee
Bump tiles-maven-plugin from 2.11 to 2.12
Bumps [tiles-maven-plugin](https://github.com/repaint-io/maven-tiles) from 2.11 to 2.12.
- [Release notes](https://github.com/repaint-io/maven-tiles/releases)
- [Changelog](https://github.com/repaint-io/maven-tiles/blob/master/CHANGELOG.adoc)
- [Commits](https://github.com/repaint-io/maven-tiles/compare/tiles-maven-plugin-2.11...tiles-maven-plugin-2.12)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-08-23 14:08:07 +00:00
3d29bb884c pom: update urls to github 2018-07-21 22:50:32 +01:00
4542d82c1a Rename Result.invert as swap 2018-07-21 22:42:16 +01:00
b80650b6ae Add Result.reduce(Result,BinaryOperator) 2018-07-20 18:40:33 +01:00
a1a7ad65c2 Left/Right: don't use @Getter for final fields
QA tools want these fields to be static, for which lombok creates static getter
methods, which then don't match the specification from the `Either` interface.
2018-07-16 22:39:28 +01:00
d001a3cb3b Prepare CHANGELOG 2018-07-16 22:33:32 +01:00
a53db86452
Merge pull request #38 from kemitix/either
Add `Either<L,R>` and add `TypeAlias<T>.flatMap()`
2018-07-16 21:07:06 +01:00
888c43d468 Update CHANGELOG 2018-07-16 21:01:25 +01:00
e8989718f3 README.org: expand TypeAlias documentation and add TypeAlias.flatMap() 2018-07-16 20:56:56 +01:00
78f15df464 README.org: add documentation for Either 2018-07-16 19:31:18 +01:00
3e4629d873 README.org: reformat and adjust headers 2018-07-16 19:10:48 +01:00
c7c7c6ebeb README.org: adjust headings 2018-07-16 18:52:33 +01:00
e5958ba432 Add Either (experimental) 2018-07-16 18:49:44 +01:00
a85280341a
Merge pull request #37 from kemitix/rewrite-readme
Rewrite README and convert to org-mode
2018-07-15 22:04:17 +01:00
9da7f0fca0 Update CHANGELOG 2018-07-15 21:57:35 +01:00
9a6c58c835 Rewrite README and convert to org-mode
* MaybeTest use static import Maybe.*
* Maybe.orElseThrow() now returns value when is a Just
2018-07-15 20:59:49 +01:00
a9d28c9950
Merge pull request #36 from kemitix/next
Next
2018-07-12 22:21:36 +01:00
51f86884fb Add Maybe.isJust() and Maybe.isNothing() 2018-07-12 20:28:34 +01:00
d66c4c8502 Add Maybe.match(Consumer,Runnable) 2018-07-12 18:45:02 +01:00
c64284872c Rename Result.maybeThen() as Result.flatMapMaybe() 2018-07-10 22:46:22 +01:00
97e08ab4fa
Merge pull request #35 from kemitix/result-maybe-then-static
Add `Result.maybeThen(Result<Maybe<T>>, Function)`
2018-07-10 21:40:14 +01:00
3c60da2735 * Add Result.maybeThen(Result<Maybe<T>>, Function) 2018-07-10 17:37:54 +01:00
3871568ac4
Merge pull request #34 from kemitix/clean-up-result-tests
Clean up Result tests
2018-07-09 18:53:49 +01:00
9138cbba46 ResultTest: tidy up test names 2018-07-09 15:47:27 +01:00
a9beeacf0b Update ResultTest sample businessOperation 2018-07-09 15:24:28 +01:00
f6eb27450f Add thenWith(Function) 2018-07-09 08:00:53 +01:00
fb6b65e6de Add andThen(Function) 2018-07-08 19:46:45 +01:00
c8bdd77ac9
Merge pull request #33 from kemitix/single-consumers-for-maybe-and-result
Single consumers for maybe and result
2018-07-07 23:16:24 +01:00
5a5fe003d0 Update CHANGELOG 2018-07-07 23:12:28 +01:00
28564a2129 Add Result.recover(Function) and Result.onError(Consumer) 2018-07-07 23:02:02 +01:00
c5247d7c14 Add Maybe.ifNothing(Runnable) 2018-07-07 18:21:35 +01:00
576b50fadb
Merge pull request #32 from kemitix/update-jenkinsfile
jenkins: don't fail the release branch when SNAPSHOT version, just don't deploy
2018-07-07 18:04:29 +01:00
86f1b69240 jenkins: fix typo (there is no builder project) 2018-07-07 17:46:14 +01:00
cc6a6f8520 jenkins: don't faile release branch with SNAPSHOT, just don't deploy 2018-07-07 17:44:01 +01:00
7648967f8a TypeAlias: access own member fields directly 2018-07-05 07:27:17 +01:00
f0f8ba6a9b README: Remove 'invalid' jenkins badges - revert once available 2018-07-05 07:19:48 +01:00
c47d934da4 jenkins: explicitly use JDK 1.8 2018-07-03 10:52:00 +01:00
8c3163d555 Add jPeek badge 2018-07-03 10:50:01 +01:00
9923bbc880 Add Result.peek(Consumer) 2018-06-30 18:13:29 +01:00
275a35d727 Update CHANGELOG 2018-06-30 16:29:17 +01:00
248bda0b4f Add Result.of(Callable) to reduce boiler plate when calling 2018-06-30 16:24:06 +01:00
74776975d2 pom: Add name, description, issueManagement, scm and inceptionYear elements 2018-06-30 15:11:26 +01:00
fd88193b2b pom: add parent 2018-06-30 12:55:34 +01:00
4fcbc83bab Skip pitest during deployment 2018-06-26 22:36:46 +01:00