blob: 80468f862a93b786fa5183f1176696149cc1a32e [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-greenplum</artifactId>
<version>0.10</version>
<dependencies>
<dependency>
<groupId>org.hop</groupId>
<artifactId>hop-databases-postgresql</artifactId>
<scope>compile</scope>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.hop</groupId>
<artifactId>hop-databases-postgresql</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.pivotal</groupId>
<artifactId>greenplum-jdbc</artifactId>
<version>${greenplum.version}</version>
</dependency>
</dependencies>
<packaging>jar</packaging>
<name>Hop Plugins Databases Greenplum</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>
<greenplum.version>5.1.4</greenplum.version>
</properties>
<dependencyManagement>
<dependencies>
<!-- test dependencies -->
<dependency>
<groupId>org.hop</groupId>
<artifactId>hop-databases-postgresql</artifactId>
<scope>test</scope>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.hop</groupId>
<artifactId>hop-databases-postgresql</artifactId>
<type>test-jar</type>
<scope>test</scope>
<version>${project.version}</version>
</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>
<repositories>
<repository>
<id>pivotal</id>
<name>Pivotal Repository</name>
<url>http://nexus.saas.hand-china.com/content/repositories/rdc/</url>
</repository>
</repositories>
</project>