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

<scm>
   <connection>scm:svn:svn://morphia.googlecode.com/svn/mavenrepo/</connection>
          <developerConnection>scm:svn:svn://morphia.googlecode.com/svn/mavenrepo/</developerConnection>
</scm>
link|improve this question

50% accept rate
3  
So what is your question? – korifey Dec 28 '11 at 11:58
feedback

1 Answer

The Morphia functionality will be merged into the official Java driver, therefore there won't be a 1.0 release.

Take the 0.99.1-SNAPSHOT - this is the latest version and includes all recent bugfixes. 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>
link|improve this answer
but we are using maven and in maven repo its only 0.91 version. So is there any way to add alternate address for morphia repo in pom.xml as we already have one repo for project and our maven is pointing to it. also we can not copy jay directly from morphia repo as it leads to versioning problem. So we have to point that to morphia repo where jar is present. – Darshan Patil Dec 29 '11 at 6:36
I'm not sure I understand you correctly. You'll need to add the Morphia repository - I've added it in the post above. – xeraa Dec 29 '11 at 11:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.