I want to test my Java EE 6 application (EJB, JPA, CDI, JSF, Primefaces) using Selenium as JUnit tests.
After writing my first tests I want to install a continous integration software. What is the standard of doing so?
- write code
- check code in (e.g. subversion)
- CI software checks out the code
- CI software builds the code (e.g. war)
- CI software deploys the build to test server (e.g. Jboss AS)
- CI software runs the JUnit tests
?
Which CI software is able to do so?