blob: f4bbf56c775f75b558e0c188c9ff069de8255511 [file] [log] [blame]
<?xml version="1.0"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>org.hop</groupId>
<artifactId>hop-databases-postgresql</artifactId>
<version>0.10</version>
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<scope>compile</scope>
</dependency>
</dependencies>
<packaging>jar</packaging>
<name>Hop Plugins Databases PostgreSQL</name>
<parent>
<groupId>org.hop</groupId>
<artifactId>hop-plugins-databases</artifactId>
<version>0.10</version>
</parent>
<properties>
<!-- Test running configuration -->
<maven-surefire-plugin.reuseForks>true</maven-surefire-plugin.reuseForks>
<maven-failsafe-plugin.reuseForks>false</maven-failsafe-plugin.reuseForks>
<postgresql.version>42.2.8</postgresql.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
<executions>
<execution>
<goals>
<goal>test-jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>