Chapter 5. Creating a New Fuse Project
Overview
The tooling uses Maven archetypes to generate a project with all of the dependencies preconfigured. The archetypes also create the POM file needed to run and deploy your application, as well as sample code and data to get you started.
Procedure
To create a Fuse project:
- Select
to open the New Fuse Project wizard shown in Figure 5.1, “New Fuse Project Wizard's Project Location Page”. Figure 5.1. New Fuse Project Wizard's Project Location Page
The wizard opens with the Use default workspace location option selected on the location page. - Enter the name of the Fuse project.
- Specify the location where the data for the project will be stored.
- To use the default workspace select Use default workspace location.
- To use an alternative location clear Use default workspace location and specify a new location in the provided field.Clicking opens a file browser.
- If you want to add the new project to an Eclipse working set, select Add project(s) to working set and enter the name of the working set.
Figure 5.2. New Fuse Project wizard's details page
- Select a project type from the list.NoteThe route editor works with these project types:
- camel-archetype-activemqCreates a new Apache Camel project that configures and interacts with Apache ActiveMQ.
- camel-archetype-blueprintCreates a new Apache Camel project with support for OSGi blueprint that is deployment-ready for OSGi.
- camel-archetype-cxf-code-first-blueprintCreates a new Apache Camel project with Apache CXF code-first example using OSGi Blueprint.
- camel-archetype-cxf-contract-first-blueprintCreates a new Apache Camel project with Apache CXF contract-first example using OSGi Blueprint.
- camel-archetype-javaCreates a new Apache Camel project using Java DSL.You cannot edit Java DSL in the route editor.
- camel-archetype-springCreates a new Apache Camel project with added support for Spring DSL.
- camel-archetype-spring-dmCreates a new Apache Camel project with added support for Spring DSL that is deployment-ready for OSGi.
- camel-archetype-webCreates a new Apache Camel web project that deploys the Camel routes as a WAR.
- cxf-jaxrs-serviceCreates a simple CXF JAX-RS web application service using Spring configuration.
- cxf-jaxws-javafirstCreates a project for developing a Web service starting from Java code.
- Enter a group ID for the project in the Group Id field, or accept the default.The tooling uses the group ID to form the first part of the dot-separated package name. For example, if you enter
Demo
for the group ID, it appears in the Package field asDemo.
. - Enter an artifact ID for the project in the Artifact Id field, or accept the default.The tooling uses the artifact ID as the name of the project and to form the second part of the dot-separated package name. For example, if you enter
BigRoute
for the artifact ID, it appears in the Package field asDemo.BigRoute
. - Enter a version for the project in the Version field, or accept the default.
- If you want to change the package name generated for the artifacts, enter the new package name in the Package field.
- Clickto create the Maven project, which contains starting point artifacts.
Resolving Maven dependency errors
You may encounter Maven dependency errors after you create a new Fuse project.
Though it can happen at other times, it more typically occurs when you create a project based on any of the supplied archetypes for the first time, but then cancel the project before the process finishes. Interrupting the process in this way often prevents all of the project's dependencies from downloading from the Maven repositories, which can take some time.
You can often easily resolve these dependency errors by updating Maven dependencies this way:
- In Project Explorer, select the root project just created.
- Right-click it to open the context menu.
- Select
- In the Update Maven Project wizard, check Force Update of Snapshots/Releases.
- Click OK.In the bottom, right corner of the workbench, you may see the progress status bar churning as missing dependencies are downloaded from the Maven repositories.
Related topics
New Fuse Project |
Red Hat JBoss Fuse Tooling Tutorials, To Create a New Route |