Skip to content

Commit 38e6017

Browse files
committed
bump airlift to compatible with trino
Signed-off-by: tison <wander4096@gmail.com>
1 parent 43d1d53 commit 38e6017

File tree

4 files changed

+30
-21
lines changed

4 files changed

+30
-21
lines changed

pulsar-sql/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<okhttp3.version>3.14.9</okhttp3.version>
3737
<!-- use okio version that matches the okhttp3 version -->
3838
<okio.version>1.17.2</okio.version>
39-
<airlift.version>208</airlift.version>
39+
<airlift.version>213</airlift.version>
4040
</properties>
4141

4242
<dependencyManagement>

pulsar-sql/presto-distribution/LICENSE

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -303,28 +303,28 @@ The Apache Software License, Version 2.0
303303
- bytecode-1.2.jar
304304
* Airlift
305305
- aircompressor-0.20.jar
306-
- bootstrap-208.jar
307-
- concurrent-208.jar
308-
- configuration-208.jar
309-
- discovery-208.jar
306+
- bootstrap-213.jar
307+
- concurrent-213.jar
308+
- configuration-213.jar
309+
- discovery-213.jar
310310
- discovery-server-1.30.jar
311-
- event-208.jar
312-
- event-http-208.jar
313-
- http-client-208.jar
314-
- http-server-208.jar
315-
- jmx-208.jar
316-
- jmx-http-208.jar
317-
- jmx-http-rpc-208.jar
311+
- event-213.jar
312+
- event-http-213.jar
313+
- http-client-213.jar
314+
- http-server-213.jar
315+
- jmx-213.jar
316+
- jmx-http-213.jar
317+
- jmx-http-rpc-213.jar
318318
- joni-2.1.5.3.jar
319-
- json-208.jar
320-
- log-208.jar
321-
- log-manager-208.jar
322-
- node-208.jar
319+
- json-213.jar
320+
- log-213.jar
321+
- log-manager-213.jar
322+
- node-213.jar
323323
- parameternames-1.4.jar
324-
- security-208.jar
324+
- security-213.jar
325325
- slice-0.41.jar
326-
- stats-208.jar
327-
- trace-token-208.jar
326+
- stats-213.jar
327+
- trace-token-213.jar
328328
- units-1.6.jar
329329
* Apache HTTP Client
330330
- httpclient-4.5.13.jar
@@ -538,7 +538,7 @@ CDDL-1.1 -- licenses/LICENSE-CDDL-1.1.txt
538538
- hk2-utils-2.6.1.jar
539539
- aopalliance-repackaged-2.6.1.jar
540540
* Jersey
541-
- jaxrs-208.jar
541+
- jaxrs-213.jar
542542
- jersey-client-2.34.jar
543543
- jersey-common-2.34.jar
544544
- jersey-container-servlet-2.34.jar

pulsar-sql/presto-distribution/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@
9797
<groupId>com.google.inject.extensions</groupId>
9898
<artifactId>guice-multibindings</artifactId>
9999
</exclusion>
100+
<exclusion>
101+
<groupId>org.apache.logging.log4j</groupId>
102+
<artifactId>log4j-to-slf4j</artifactId>
103+
</exclusion>
100104
</exclusions>
101105
</dependency>
102106

pulsar-sql/presto-pulsar/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,13 @@
4141
<dependency>
4242
<groupId>io.airlift</groupId>
4343
<artifactId>bootstrap</artifactId>
44+
<exclusions>
45+
<exclusion>
46+
<groupId>org.apache.logging.log4j</groupId>
47+
<artifactId>log4j-to-slf4j</artifactId>
48+
</exclusion>
49+
</exclusions>
4450
</dependency>
45-
4651
<dependency>
4752
<groupId>io.airlift</groupId>
4853
<artifactId>json</artifactId>

0 commit comments

Comments
 (0)