2 Replies Latest reply on Aug 3, 2011 9:39 AM by davsclaus

    Starting with a project in fuse IDE.

    gnanagurus

      Hi

       

      I am new to fuse. I know about ESB. I experienced and had some use cases using Camel-Blueprint( Which is a deploy free feature, which doesnt require maven and all ). I need to work with normal fuse project. when i start up with fuse ide, i am getting confused with group id , artifacts id etc. By the way is there any tutorial from scratch for all these.

       

      Since when i migrate from camel-blueprint. I feel everything difficult.

       

      Regards

      Guru

        • 1. Re: Starting with a project in fuse IDE.
          davsclaus

          Hi

           

          Welcome to the Fuse community.

           

          Fuse IDE have some guides and tutorials. You may want to take a look at them

          http://fusesource.com/products/fuse-ide/

          • 2. Re: Starting with a project in fuse IDE.
            davsclaus

            For example there is a tutorial that takes you from scratch to a running project.

             

            The artifactId, groupId, version is details related to Apache Maven, which is a tool you use to build and compile projects.

             

            The artifactId and groupId is used to "name" your project.

             

            For example for Apache Camel we use, for the camel-core JAR:

            artifactId = camel-core

            groupId = org.apache.camel

             

            So in your organization you may want to use groupId as a company + project name

            groupId = com.mycompany.myproject

            artifactId = mySubName

             

            Then you can have X number of projects with the same groupId

            groupId = com.mycompany.myproject

            artifactId = myOtherSubName

             

            and so forth.