Skip to content

Commit c0775b8

Browse files
committed
core jar shade guava
1 parent c0c4d47 commit c0775b8

File tree

1 file changed

+21
-7
lines changed

1 file changed

+21
-7
lines changed

core/pom.xml

Lines changed: 21 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1919
<project.package.name>core</project.package.name>
2020
<calcite.server.version>1.16.0</calcite.server.version>
21+
<jackson.version>2.7.9</jackson.version>
2122
<guava.version>19.0</guava.version>
2223
</properties>
2324

@@ -53,12 +54,6 @@
5354
<version>${flink.version}</version>
5455
</dependency>
5556

56-
<!--<dependency>
57-
<groupId>org.apache.flink</groupId>
58-
<artifactId>flink-table_2.11</artifactId>
59-
<version>1.7.2</version>
60-
</dependency>-->
61-
6257
<dependency>
6358
<groupId>org.apache.flink</groupId>
6459
<artifactId>flink-table-planner_2.11</artifactId>
@@ -76,6 +71,24 @@
7671
<artifactId>calcite-server</artifactId>
7772
<!-- When updating the Calcite version, make sure to update the dependency exclusions -->
7873
<version>${calcite.server.version}</version>
74+
<exclusions>
75+
<exclusion>
76+
<artifactId>jackson-databind</artifactId>
77+
<groupId>com.fasterxml.jackson.core</groupId>
78+
</exclusion>
79+
</exclusions>
80+
</dependency>
81+
82+
<dependency>
83+
<groupId>com.fasterxml.jackson.core</groupId>
84+
<artifactId>jackson-databind</artifactId>
85+
<version>${jackson.version}</version>
86+
</dependency>
87+
88+
<dependency>
89+
<groupId>com.google.guava</groupId>
90+
<artifactId>guava</artifactId>
91+
<version>${guava.version}</version>
7992
</dependency>
8093

8194
<dependency>
@@ -125,7 +138,8 @@
125138
</transformers>
126139
<artifactSet>
127140
<includes>
128-
<include>*:guava</include>
141+
<include>com.fasterxml.jackson.*</include>
142+
<include>com.google.guava</include>
129143
</includes>
130144
</artifactSet>
131145
<filters>

0 commit comments

Comments
 (0)