Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What CI tool would you recommend for GWT development? [closed]

I'm about to install a CI tool for a 2 man Java/GWT development "team", and need a brief update on the current state-of-the-art.
I come from a CruiseControl/Ant/rake background (with no Maven experience).

Requirements:
* Scripting language (minimal XML config)
* Ant task re-use
* "5 minute" installation and configuration

Here are some of the contestants:
Hudson
Bamboo
Rake
Gradle
Buildr
CruiseControl
Cruise

What CI tool would you recommend in my case ?

like image 583
user77115 Avatar asked Feb 04 '10 08:02

user77115


2 Answers

I've set up a Hudson CI for a GWT project with no problem on both Windows and Linux. I've used ANT tasks to do the different compilations, run JUnit tests and GWT tests, among other things.

You can execute anything you want, ant tasks, command line programs, python scripts,etc.

It also has integration with Bug-Tracking systems like Redmine. And Redmine has integration with Hudson.

And the interface is easy and intuitive, all web based, no xml config files.

like image 128
Iker Jimenez Avatar answered Nov 15 '22 10:11

Iker Jimenez


For me TeamCity is a best tool for such a thing. Installation is like a breeze. Professional edition is free to use. Ant task reusing is possible. We are reusing all nant tasks from hand written CI 'server'. XML config possible, but UI is great and very easy. Also TeamCity comes with Bug Tracking systems integration.

Features

like image 21
Sergey Mirvoda Avatar answered Nov 15 '22 10:11

Sergey Mirvoda