Skip to content

Commit

Permalink
bump airlift to compatible with trino
Browse files Browse the repository at this point in the history
Signed-off-by: tison <[email protected]>
  • Loading branch information
tisonkun committed Apr 6, 2023
1 parent 43d1d53 commit ddc4f07
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 21 deletions.
2 changes: 1 addition & 1 deletion pulsar-sql/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
<okhttp3.version>3.14.9</okhttp3.version>
<!-- use okio version that matches the okhttp3 version -->
<okio.version>1.17.2</okio.version>
<airlift.version>208</airlift.version>
<airlift.version>213</airlift.version>
</properties>

<dependencyManagement>
Expand Down
38 changes: 19 additions & 19 deletions pulsar-sql/presto-distribution/LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -303,28 +303,28 @@ The Apache Software License, Version 2.0
- bytecode-1.2.jar
* Airlift
- aircompressor-0.20.jar
- bootstrap-208.jar
- concurrent-208.jar
- configuration-208.jar
- discovery-208.jar
- bootstrap-213.jar
- concurrent-213.jar
- configuration-213.jar
- discovery-213.jar
- discovery-server-1.30.jar
- event-208.jar
- event-http-208.jar
- http-client-208.jar
- http-server-208.jar
- jmx-208.jar
- jmx-http-208.jar
- jmx-http-rpc-208.jar
- event-213.jar
- event-http-213.jar
- http-client-213.jar
- http-server-213.jar
- jmx-213.jar
- jmx-http-213.jar
- jmx-http-rpc-213.jar
- joni-2.1.5.3.jar
- json-208.jar
- log-208.jar
- log-manager-208.jar
- node-208.jar
- json-213.jar
- log-213.jar
- log-manager-213.jar
- node-213.jar
- parameternames-1.4.jar
- security-208.jar
- security-213.jar
- slice-0.41.jar
- stats-208.jar
- trace-token-208.jar
- stats-213.jar
- trace-token-213.jar
- units-1.6.jar
* Apache HTTP Client
- httpclient-4.5.13.jar
Expand Down Expand Up @@ -538,7 +538,7 @@ CDDL-1.1 -- licenses/LICENSE-CDDL-1.1.txt
- hk2-utils-2.6.1.jar
- aopalliance-repackaged-2.6.1.jar
* Jersey
- jaxrs-208.jar
- jaxrs-213.jar
- jersey-client-2.34.jar
- jersey-common-2.34.jar
- jersey-container-servlet-2.34.jar
Expand Down
4 changes: 4 additions & 0 deletions pulsar-sql/presto-distribution/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-multibindings</artifactId>
</exclusion>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
</exclusion>
</exclusions>
</dependency>

Expand Down
7 changes: 6 additions & 1 deletion pulsar-sql/presto-pulsar/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,13 @@
<dependency>
<groupId>io.airlift</groupId>
<artifactId>bootstrap</artifactId>
<exclusions>
<exclusion>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-to-slf4j</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
<groupId>io.airlift</groupId>
<artifactId>json</artifactId>
Expand Down

0 comments on commit ddc4f07

Please sign in to comment.