Skip to content

Commit

Permalink
Dremio version is now set in a property (#26)
Browse files Browse the repository at this point in the history
Added a property for the Dremio version and changed the module version as well as dependencies to use the property.

Co-authored-by: Norman Jordan <[email protected]>
  • Loading branch information
normanj-bitquill and Norman Jordan authored Jun 13, 2022
1 parent 92f7577 commit 9be1858
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,15 @@
<modelVersion>4.0.0</modelVersion>

<groupId>com.dremio.plugin</groupId>
<version>21.1.1-202204292111390812-57b1832f</version>
<version>${version.dremio}</version>
<artifactId>dremio-hbase-plugin</artifactId>

<name>Dremio HBase Community Connector</name>

<properties>
<hbase.TestSuite>**/HBaseTestsSuite.class</hbase.TestSuite>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<version.dremio>21.1.1-202204292111390812-57b1832f</version.dremio>
</properties>

<dependencies>
Expand All @@ -48,7 +49,7 @@
<dependency>
<groupId>com.dremio.sabot</groupId>
<artifactId>dremio-sabot-kernel</artifactId>
<version>${project.version}</version>
<version>${version.dremio}</version>
<exclusions>
<exclusion>
<artifactId>hadoop-common</artifactId>
Expand All @@ -72,7 +73,7 @@
<!-- <dependency>
<groupId>com.dremio.sabot</groupId>
<artifactId>dremio-sabot-kernel</artifactId>
<version>${project.version}</version>
<version>${version.dremio}</version>
<classifier>tests</classifier>
<scope>test</scope>
<exclusions>
Expand All @@ -85,7 +86,7 @@
<dependency>
<groupId>com.dremio</groupId>
<artifactId>dremio-common</artifactId>
<version>${project.version}</version>
<version>${version.dremio}</version>
<classifier>tests</classifier>
<scope>test</scope>
</dependency> -->
Expand All @@ -106,7 +107,7 @@
<dependency>
<groupId>com.dremio.services</groupId>
<artifactId>dremio-services-namespace</artifactId>
<version>${project.version}</version>
<version>${version.dremio}</version>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
Expand Down

0 comments on commit 9be1858

Please sign in to comment.