2018-01-06 14:38:33 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2018-04-26 02:50:35 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2018-07-12 03:04:54 -04:00
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2018-04-26 08:37:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<artifactId>java-cockroachdb</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
2018-01-06 14:38:33 -05:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>parent-modules</artifactId>
|
|
|
|
<groupId>com.baeldung</groupId>
|
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
<relativePath>../../</relativePath>
|
|
|
|
</parent>
|
2018-01-06 14:38:33 -05:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.postgresql</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<version>${postgresql.version}</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2018-01-06 14:38:33 -05:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>Central</id>
|
|
|
|
<name>Central</name>
|
|
|
|
<url>http://repo1.maven.org/maven2/</url>
|
|
|
|
<layout>default</layout>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
2018-01-06 14:38:33 -05:00
|
|
|
|
2018-04-26 08:37:47 -04:00
|
|
|
<properties>
|
|
|
|
<postgresql.version>42.1.4</postgresql.version>
|
|
|
|
</properties>
|
2018-01-06 14:38:33 -05:00
|
|
|
|
|
|
|
</project>
|