Gradle release versioning
July 3, 2018
There is this awesome release plugin which takes care of the usual stuff and more, like checking uncommitted files, checking if commit is pushed or not, and adding release tag etc.
"Every base is base 10" -- anonymous
July 3, 2018
There is this awesome release plugin which takes care of the usual stuff and more, like checking uncommitted files, checking if commit is pushed or not, and adding release tag etc.
July 1, 2018
Few days ago I had read someone’s blog on how they went with the flow and tried gradle and eventually ended up in a mess and went back to good ol’ maven.
July 18, 2017
Disclaimer : I speak for myself and this is purely based on my personal experiences.
July 17, 2017
This is a note to self. A stupid error that was bugging me for sometime.
There is this nice Lombok plugin for IntelliJ which runs just fine. Of late, I did certain upgrades on IntelliJ and started seeing this error :
"Ambigous method call. Both method() and method() match."
April 16, 2017
As applications grow, number of APIs increase, number of consumers increase, it is extremely critical to have a uniform response structure across all APIs. Different APIs behaving differently, conflicting error codes or a HttpStatus
of 500 for something like a invalid credit card number or email in the request payload is highly undesirable.
April 10, 2017
Quite a sad story that swagger (1.5.x)
does not go so smooth with Dropwizard (0.9)
, particularly when you have joda LocalDateTime
objects, authenticated APIs, and probably snake_case
dto objects.