PureMVC Java port by Frederic Saunier ([email protected])
Adapted from sources of different authors
PureMVC - Copyright(c) 2006-10 Futurescale, Inc., Some rights reserved.
Your reuse is governed by the Creative Commons Attribution 3.0 License
--------------------------------------------------------------------------
Release Date: 18/04/2012
Platform: Java
Version: 1
Revision: 2
Author:
: Frederic Saunier <[email protected]>
: Donald Stinchfield <[email protected]>
: Thomas Schuessler <[email protected]>
: Michael Watzek <[email protected]>
: Philipp Hemker <[email protected]>
: Jan Grimmer <[email protected]>
: Nicolas Deverge <[email protected]>
License: Creative Commons Attribution 3.0 License
--------------------------------------------------------------------------
Add this in your pom.xml
file:
<dependencies>
...
<dependency>
<groupId>org.puremvc</groupId>
<artifactId>puremvc-java</artifactId>
<version>1.2-SNAPSHOT</version>
</dependency>
</dependencies>
<repositories>
...
<repository>
<id>ekito-public-snapshots</id>
<url>https://raw.github.com/Ekito/maven-repo/master/snapshots</url>
</repository>
<repository>
<id>ekito-public-releases</id>
<url>https://raw.github.com/Ekito/maven-repo/master/releases</url>
</repository>
</repositories>
The project is automatically built by BuildHive:
1.2 - Moved to Maven.
1.1 - Now Proxy.onRemove() method is called when removing a proxy.
1.0 - The framework has been adapted from the multicore version. It fixes the lack off onRegister, onRemove methods of Mediators and Proxy classes and improves GWT compatibility. It also has been tested successfully against Android 2.2.
0.3 - Junit tests from Futurescale have been added. build.xml file was refactored to make easier to build modules. This is mostly an administrative release
0.2 - Current version is partially compatible with AS3 version 2.0.1, still needs onRegister/onRemove in Mediators and Proxies, and a few other things. Added JavaDocs - CLH
0.1 - Created initial file structure and added license and version files - CLH