POM for com.google.code.morphia: morphia: jar: 1.00-SNAPSHOT missing, dependency information not available

POM for com.google.code.morphia: morphia: jar: 1.00-SNAPSHOT missing, dependency information not available

<scm> <connection>scm:svn:svn://morphia.googlecode.com/svn/mavenrepo/</connection> <developerConnection>scm:svn:svn://morphia.googlecode.com/svn/mavenrepo/</developerConnection> </scm> 
+4
source share
1 answer

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!

+10
source

Source: https://habr.com/ru/post/1388284/


All Articles