<?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> <artifactId>orientdb</artifactId> <version>0.0.1-SNAPSHOT</version> <name>orientdb</name> <packaging>jar</packaging> <description>introduction to the OrientDB Java APIs</description> <parent> <groupId>com.baeldung</groupId> <artifactId>persistence-modules</artifactId> <version>1.0.0-SNAPSHOT</version> </parent> <dependencies> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-core</artifactId> <version>${orientdb.version}</version> </dependency> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-graphdb</artifactId> <version>${orientdb.version}</version> </dependency> <dependency> <groupId>com.orientechnologies</groupId> <artifactId>orientdb-object</artifactId> <version>${orientdb.version}</version> </dependency> <dependency> <groupId>com.tinkerpop.blueprints</groupId> <artifactId>blueprints-core</artifactId> <version>${blueprints.version}</version> </dependency> </dependencies> <properties> <orientdb.version>2.2.31</orientdb.version> <blueprints.version>2.6.0</blueprints.version> </properties> </project>