Saturday, 28 July 2018

Overview of Jenkins

Jenkins is an open-source continuous integration(CI) tool, which connects source code in a remote GIT repository. Once it monitors any code pushed, it triggers a build, test, and deployment.  It automatically moves the same piece of code through a stage pipe, i.e, dev., test, and production. 

continue ...




No comments:

Can Jackson Deserialize Java Time ZonedDateTime

Yes, but must include JSR310. Thus ZonedDateTime can be deserialized directly from JSON response to POJO field. <dependency> <g...