I want to automate the Build Process of an existing RCP application with an own target platform. Now I can't decide between Ant and Maven ore maybe there is a better tool?!

The tool should be easy to set up, and should run JUnit and SWTBot Tests. Can you help me?

Thx in advance Best regards Orri

link|improve this question

36% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Tycho is a good way to build Eclipse plug-ins / applications :

Tycho is focused on a Maven-centric, manifest-first approach to building Eclipse plug-ins, features, update sites, RCP applications and OSGi bundles. Tycho is a set of Maven plugins and extensions for building Eclipse plugins and OSGi bundles with Maven

link|improve this answer
I use tycho and it is great! Several Eclipse projects now use it. It can also be combined with Continuous Integration tools! – Matteo Nov 17 '11 at 11:48
Thx...Cool, means Tycho takes the informations out of the manifest from Eclipse?! – Orri Nov 17 '11 at 12:16
@Orri - yes, the build is based in the most part on the plugin manifests, feature files etc. You still need to have a basic Maven structure in place though. – Robert Munteanu Nov 17 '11 at 12:17
Do you know a good Tutorial for a OSGI Build with Maven Tycho? – Orri Nov 17 '11 at 13:14
The Tycho documentation - eclipse.org/tycho/documentation.php - is a good starting point. – Robert Munteanu Nov 17 '11 at 13:24
show 1 more comment
feedback

You can try TeamCity or Jenkins or Hudson.

This tools are continuous integration (CI) servers.

With help of TeamCity, for example, you can create project which run Ant targets or build application with Maven or you can use configuration with both Maven and Ant.

This article is how to create project in TeamCity. This link is about of TeamCity's main features.

The TeamCity supports JUnit, you can read info about others supported tools and platfoms.

The another tool is Luntbuild.

link|improve this answer
I know (CI)servers, that should be the goal of the hole project but one of the requirements of an CI server is a working build-tool. That is my first problem :-( At the moment we build our project out of Eclipse. – Orri Nov 17 '11 at 11:16
@Orri We are using Maven for building project and Ant for some deploying needs (custom tasks). We have TeamCity's project that build project and run JUnit tests with Maven and after that it runs several Ant scripts. We run this project by setting scheduler in TeamCity or manually – Alex K Nov 17 '11 at 11:24
@Orri Some times ago we used Luntbuild: luntbuild.javaforge.com for the same purpose – Alex K Nov 17 '11 at 11:26
Thx...The Thing with Maven and Ant is my goal at the moment...Build with Maven and Ant for some commandos executed under Maven...And how do you get Target Platform known in Maven? – Orri Nov 17 '11 at 12:14
feedback

here, a tycho tutorial
for some reason, i couldn't add this as a comment. weird
ps: I'm using tycho with hudson, and this is GREAT!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.