Skip to content
This repository was archived by the owner on Jul 9, 2022. It is now read-only.

Getting Started

olegz edited this page Feb 27, 2012 · 19 revisions

Getting started process is simple and are currently supporting the two major IDEs such as Eclipse and IntelliJ as well as 3 major build systems such as SBT, Gradle and Maven

We are also providing a sample project that will get you started within minutes and could be used as a template for starting a new project. The sample project contains many small samples demonstrating each and every supported EIP pattern configuration as well as a more complete sample [Order Processing] (https://github.com/SpringSource/spring-integration-scala/wiki/OrderProcessing-sample) demonstrating what an application might look like. The small samples organized as JUnit test and are all run during the build process while Order Processing is a Scala application which you'll be able to execute separately

To get started follow these simple steps:

Check out the sample project

git clone https://[email protected]/olegz/scala-dsl-sample.git
cd scala-dsl-sample

Build sample project

Here you have 3 options. You can build with SBT, Gradle and Maven. From the project root directory:

Gradle

./gradlew clean test

SBT

You must have SBT installed. The project was tested with SBT v0.11.2

sbt clean test

Maven

You must have Maven (v2.2.1+) installed.

mvn clean test

This should build the project and run all the tests.

Clone this wiki locally