|
Page Edited :
SM :
3.1. Starting a new project
3.1. Starting a new project has been edited by Gert Vanthienen (Feb 15, 2008). Content:Before we van really get started, we have to create a SA project which contains our servicemix-camel SU. Because this is basically what we have learned in the previous tutorial, we are just going to give an outline of the tasks at hand here. Feel free to look back there whenever you need help completing these steps. Creating the projectsWe are going to create 3 Maven projects:
Create the parent projectStart by creating a new directory to hold your project. Add a pom.xml file to it: <?xml version="1.0" encoding="utf-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.servicemix.tutorial.camel</groupId> <artifactId>parent</artifactId> <version>1.0-SNAPSHOT</version> <packaging>pom</packaging> <name>SMX-Camel :: Tutorial</name> <url>http://servicemix.apache.org</url> </project>
|
Unsubscribe or edit your notifications preferences
