vmware-archive / pxf-field

Prototype PXF extensions for HAWQ
Apache License 2.0
36 stars 15 forks source link

pxf 2.5 #13

Closed acrlewis closed 9 years ago

acrlewis commented 9 years ago

adjusted the add-mvn-dependencies.sh to build based on pxf 2.5

ctzolov-pivotal commented 9 years ago

@acrlewis, thanks for the contribution! I will merge your change although the entire documentation is a bit outdated. To get the PXF 2.5.1.0 jars you shoul use the Big-Data Maven Repository instead:

<repository>
  <id>bintray</id>
  <name>HAWQ-MR/PXF Release Repository</name>
  <url>https://dl.bintray.com/big-data/maven</url>
</repository>

Note: the com.gopivotal group name is renamed to com.pivotal.

The PXF-2.5.1.0 dependencies:

<dependency>
  <groupId>com.pivotal</groupId>
  <artifactId>pxf-api</artifactId>
  <version>2.5.1.0</version>  
</dependency>

<dependency>
  <groupId>com.pivotal</groupId> 
  <artifactId>pxf-service</artifactId>
  <version>2.5.1.0</version>
</dependency>

<dependency>
  <groupId>com.pivotal</groupId>
  <artifactId>pxf-hbase</artifactId>
  <version>2.5.1.0</version>
</dependency>

<dependency>
  <groupId>com.pivotal</groupId>
  <artifactId>pxf-hdfs</artifactId>
  <version>2.5.1.0</version>
</dependency>

<dependency>
  <groupId>com.pivotal</groupId>
  <artifactId>pxf-hive</artifactId>
  <version>2.5.1.0</version>
</dependency>

Note that the same repository serves pre-build pxf-field jars as well:

<dependency>
   <groupId>com.gopivotal</groupId>
   <artifactId>accumulo-pxf-ext</artifactId>
   <version>3.0.0.0-18</version>
</dependency>

<dependency>
   <groupId>com.gopivotal</groupId>
   <artifactId>cassandra-pxf-ext</artifactId>
   <version>3.0.0.0-18</version>
</dependency>

<dependency>
  <groupId>com.gopivotal</groupId>
  <artifactId>hive-hotfix-pxf-ext</artifactId>
  <version>3.0.0.0-18</version>
</dependency>

<dependency>
  <groupId>com.gopivotal</groupId>
  <artifactId>jdbc-pxf-ext</artifactId>
  <version>3.0.0.0-18</version>
</dependency>

<dependency>
  <groupId>com.gopivotal</groupId>
  <artifactId>json-pxf-ext</artifactId>
  <version>3.0.0.0-18</version>
</dependency>

<dependency>
  <groupId>com.gopivotal</groupId>
  <artifactId>pxf-pipes</artifactId>
  <version>3.0.0.0-18</version>
</dependency>

<dependency>
  <groupId>com.gopivotal</groupId>
  <artifactId>pxf-test</artifactId>
  <version>3.0.0.0-18</version>
</dependency>

<dependency>
  <groupId>com.gopivotal</groupId>
  <artifactId>redis-pxf-ext</artifactId>
  <version>3.0.0.0-18</version>
</dependency>