Skip to content

Commit

Permalink
Updating drift version to 1.40-SNAPSHOT
Browse files Browse the repository at this point in the history
prestodb/drift pr : prestodb/drift#54
  • Loading branch information
imsayari404 authored and sayarimukherjee committed Dec 9, 2024
1 parent 4f3db76 commit 043d2b0
Showing 1 changed file with 51 additions and 11 deletions.
62 changes: 51 additions & 11 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,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 @@ -99,6 +99,13 @@
<air.javadoc.lint>-missing</air.javadoc.lint>
</properties>

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

<modules>
<module>presto-atop</module>
<module>presto-spi</module>
Expand Down Expand Up @@ -207,17 +214,24 @@
<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.drift</groupId>
<artifactId>drift-root</artifactId>
<version>1.40-SNAPSHOT</version>
<exclusions>
<exclusion>
<groupId>com.facebook.drift</groupId>
<artifactId>drift-api</artifactId>
</exclusion>
<exclusion>
<groupId>com.facebook.drift</groupId>
<artifactId>drift-codec</artifactId>
</exclusion>
<exclusion>
<groupId>com.facebook.drift</groupId>
<artifactId>drift-protocol</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>com.facebook.presto</groupId>
<artifactId>presto-testing-docker</artifactId>
Expand Down Expand Up @@ -2223,6 +2237,32 @@
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
<version>3.11.5</version>
<exclusions>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-handler</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-common</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-resolver</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-buffer</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-transport</artifactId>
</exclusion>
<exclusion>
<groupId>io.netty</groupId>
<artifactId>netty-codec</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down

0 comments on commit 043d2b0

Please sign in to comment.