Building Camel from SourceCamel uses Maven as its build and management tool. If you don't fancy using Maven you can use your IDE directly or Download a distribution or JAR. PrequisitesRequired:
Optional:
Maven optionsTo build camel maven has to be configured to use more memory Unix/Linux/MacWindowsA normal buildA normal build without running testsA normal build without running tests but checkstyle verification enabledDoing a Quick BuildAvailable as of Camel 2.6 The following skips building the manual, the distro and does not execute the unit tests. Using an IDEIf you prefer to use an IDE then you can auto-generate the IDE's project files using maven plugins. e.g. IntelliJEclipseThere are several ways to import the projects into Eclipse. m2eStarting with Camel 2.14.0, Camel can be imported into Eclipse using m2e Maven integration. Before you start: It is important to run Eclipse with at least 1.5 GB of heap memory, otherwise the import process will fail. To increase the heap size, edit the "eclipse.ini" file and set the -Xmx parameter as follows: eclipse.ini Cloning the Git RepositoryEither follow instructions about getting the latest source, or clone the Git repository with Eclipse by selecting "File -> Import -> Git / Projects from Git" and "Clone URI". Provide all repository details in the import wizard and clone the repository into a directory outside of the Eclipse workspace. Once cloning has completed, exit the import project wizard (i.e. simply select cancel when asked to select "Wizard for project import"). Import Maven ProjectsImport Camel projects as Maven projects using m2e by selecting "File -> Import -> Maven -> Existing Maven Projects". Point the wizard to the root directory of the cloned repository. Eclipse will analyze all Camel projects and eventually present the following summary: Simply confirm the import of all projects by clicking "Finish". The import process will create Eclipse projects and automatically set up build paths using dependency details provided by the pom.xml files. Once completed, all Camel projects will be available in your workspace: maven-eclipse-pluginThe maven-eclipse-plugin can be used to generate the .classpath/.project/.settings file that Eclipse need. To do this, run: or The latter is recommended as it would completely setup the workspace for you as well as provide options to wire in other projects also found in your workspace. After running the above command, from within Eclipse, do "File -> Import -> Existing Projects into Workspace", select the root camel checkout location and Eclipse should find all the projects. Adding Camel Eclipse templates to your workspaceThe above mentioned setup.eclipse profile does a few additional things to your workspace:
Hint: specify the workspace location in your .m2/settings.xmlYou can add a profile to your .m2/settings.xml to specify your eclipse workspace location so you can avoid having to type that each time you need to update the projects. Building with checkstyleTo enable source style checking with checkstyle, build Camel with the -Psourcecheck parameter Building source jarsIf you want to build jar files with the source code, that for instance Eclipse can important so you can debug the Camel code as well. Then you can run this command from the camel root folder: Working with karaf featuresIf you change anything in the features.xml from Executing unit tests using EkstaziNormally, when you execute the unit tests during your development cycle for a particular component, you are executing all the tests each time. This may become inefficient, when you are changing one class and the effect of this change is limited within the component having many unit tests. Ekstazi is a regression testing tool that can keep track of the test results and the changed classes so that unaffected tests can be skipped during the subsequent testing. For more details of Ekstazi, please refer to the Ekstazi page at http://www.ekstazi.org. To use Ekstazi, you can run the tests with the maven profile ekstazi. See Also |