<?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>java-jdbi</artifactId> <version>1.0-SNAPSHOT</version> <parent> <artifactId>parent-modules</artifactId> <groupId>com.baeldung</groupId> <version>1.0.0-SNAPSHOT</version> <relativePath>../../</relativePath> </parent> <dependencies> <dependency> <groupId>org.jdbi</groupId> <artifactId>jdbi3-core</artifactId> <version>${jdbi3-core.version}</version> </dependency> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>${hsqldb.version}</version> <scope>test</scope> </dependency> </dependencies> <repositories> <repository> <id>Central</id> <name>Central</name> <url>http://repo1.maven.org/maven2/</url> <layout>default</layout> </repository> </repositories> <properties> <jdbi3-core.version>3.1.0</jdbi3-core.version> <hsqldb.version>2.4.0</hsqldb.version> </properties> </project>