Hi all, I'm trying to setup an orientdb maven project, as this is suggested best and easy way, but it fails.
Could not find artifact com.tinkerpop.blueprints:blueprints-orient-graph:jar:2.5.0 in sonatype-nexus-snapshots (https://oss.sonatype.org/content/repositories/snapshots) This is the way specified on the OrientDb github wiki page (https://github.com/orientechnologies/orientdb/wiki/Download#last-snapshot-compiles-and-pass-all-the-test-cases)so what's wrong ? <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>cam4.orientdb</groupId> <artifactId>orientgraph</artifactId> <version>1.0</version> <dependencies> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orient-commons</artifactId> <version>2.0-SNAPSHOT</version> <type>bundle</type> </dependency> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-core</artifactId> <version>2.0-SNAPSHOT</version> <type>bundle</type> </dependency> <!-- INCLUDE THIS IF YOU'RE CONNECTING TO THE SERVER THROUGH THE REMOTE ENGINE --> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-client</artifactId> <version>2.0-SNAPSHOT</version> <type>bundle</type> </dependency> <dependency> <groupId>com.tinkerpop.blueprints</groupId> <artifactId>blueprints-orient-graph</artifactId> <version>2.5.0</version> </dependency> </dependencies> <repositories> <repository> <id>sonatype-nexus-snapshots</id> <name>Sonatype Nexus Snapshots</name> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </repository> </repositories> <build> <sourceDirectory>src</sourceDirectory> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.3.6</version> <extensions>true</extensions> </plugin> </plugins> </build> </project> Thanks and Regards, Andrei -- --- 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.
