Morphia functionality will be combined with the official Java driver, so there will be no release 1.0.
Take 0.99.1-SNAPSHOT - This is the latest version and includes all the latest fixes. This should work in your POM:
<repository> <id>morphia</id> <url>http://morphia.googlecode.com/svn/mavenrepo/</url> </repository> ... <dependency> <groupId>org.mongodb</groupId> <artifactId>mongo-java-driver</artifactId> <version>2.7.2</version> </dependency> <dependency> <groupId>com.google.code.morphia</groupId> <artifactId>morphia</artifactId> <version>0.99.1-SNAPSHOT</version> </dependency>
UPDATE 1 : now there is a fork with a stable version that includes quite some fixes: https://github.com/jmkgreen/morphia
We switched to it and did not see any regressions (this only requires a global search and replacement, since the namespace has been changed). IMHO, this is currently the best solution.
UPDATE 2 : MongoDB Inc. now raised Morphine again. You can find it at https://github.com/mongodb/morphia - this is what you should use now!
xeraa source share