In the previous chapter, we learned how to create simple web applications using JSP, JSF, and servlets. We also learned how to use Maven for build and project management.
In this chapter, we will learn how to integrate Eclipse with SVN and Git. The chapter covers the following topics:
- Installing Eclipse plugins for SVN and Git
- Performing source control tasks such as checking out files, committing changes, and so on from Eclipse
- Synchronizing projects with remote repositories
Source Control Management (SCM) is an essential part of software development. By using SCM tools, you make sure that you have access to versions of your code at important milestones. SCM also helps to manage the source code when ...