From 5b91a2d976915a0437913c0c5bcfe0d60024c722 Mon Sep 17 00:00:00 2001 From: benni Date: Mon, 19 Nov 2012 16:10:40 +0100 Subject: [PATCH] updated documentation --- README.md | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ee79a99..274b108 100644 --- a/README.md +++ b/README.md @@ -76,12 +76,35 @@ Message publication: bus.publish(subEvent); // will return after each handler has been invoked bus.post(subEvent).now(); // same as above +

Import using maven

+This project contains a maven repository that will allow you to import MBassador as a dependency into your maven project. +The following steps are necessary: -

Planned features

+ 1. Add the repository location to your pom.xml -+ Maven dependency: Add Mbassador to your project using maven. Coming soon! + + + mbassador-github-repo + https://raw.github.com/bennidi/mbassador/master/maven + + + + 2. Add the MBassador dependency to your pom.xml. You can check which versions are available by browsing + the git repository online. + + + org.mbassy + mbassador + 1.0.0.RC + + + 3. Run mvn clean package to have maven download and install the required version into your local repository + + +

Feature Roadmap

++ Make MBassador available in one of the official maven repositories + Spring integration with support for conditional message dispatch in transactional context (dispatch only after -successful commit etc.) +successful commit etc.) -> coming in december 2012

License