Hi, as mentioned in the description of the maven dependencies for orientDB i added the repository decleration to my pom.xml:
<repository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> <releases> <enabled>false</enabled> </releases> <snapshots> <enabled>true</enabled> </snapshots> </repository> When i now try to add this dependencies: <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-graphdb</artifactId> <version>1.7-SNAPSHOT</version> </dependency> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-lucene</artifactId> <version>1.7-SNAPSHOT</version> </dependency> I get the Errors: Missing artifact com.orientechnologies:orientdb-graphdb:jar:1.7-SNAPSHOT Missing artifact com.orientechnologies:orientdb-lucene:jar:1.7-SNAPSHOT So i cant use orientdb. This error appeared on a new computer. on my old computer where i already used orientdb before it still works fine in the old project. when i create a new project on my old computer and include those maven dependencies it also does not work (after deleting the files from the local repository ofcourse). -- --- You received this message because you are subscribed to the Google Groups "OrientDB" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
