Skip to content

Commit

Permalink
Add drift dependency and update drift version to 1.40-SNAPSHOT
Browse files Browse the repository at this point in the history
drift repo pr to update netty:(prestodb/drift#54)
  • Loading branch information
imsayari404 authored and sayarimukherjee committed Dec 6, 2024
1 parent 4f3db76 commit 8ff015f
Showing 1 changed file with 55 additions and 10 deletions.
65 changes: 55 additions & 10 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@
<tag>HEAD</tag>
</scm>

<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>

<properties>
<air.main.basedir>${project.basedir}</air.main.basedir>

Expand All @@ -52,7 +59,7 @@
<dep.okhttp.version>3.9.0</dep.okhttp.version>
<dep.jdbi3.version>3.4.0</dep.jdbi3.version>
<dep.oracle.version>19.3.0.0</dep.oracle.version>
<dep.drift.version>1.38</dep.drift.version>
<dep.drift.version>1.40-SNAPSHOT</dep.drift.version>
<!-- Changing joda version changes tzdata which must match deployed JVM tzdata
Do not change this without also making sure it matches -->
<dep.joda.version>2.12.7</dep.joda.version>
Expand Down Expand Up @@ -207,15 +214,9 @@
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
<version>4.1.115.Final</version>
</dependency>

<dependency>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
<version>4.1.107.Final</version>
<groupId>com.github.imsayari404</groupId>
<artifactId>drift</artifactId>
<version>1.40-SNAPSHOT</version>
</dependency>

<dependency>
Expand Down Expand Up @@ -1109,6 +1110,20 @@
<groupId>com.facebook.drift</groupId>
<artifactId>drift-transport-netty</artifactId>
<version>${dep.drift.version}</version>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-unix-common</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down Expand Up @@ -2223,6 +2238,36 @@
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
<version>3.11.5</version>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-transport-native-unix-common</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit 8ff015f

Please sign in to comment.