Skip to content

Commit

Permalink
fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yuzelin authored and JingsongLi committed Jan 27, 2024
1 parent 8b18e3b commit ba476a5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 1 deletion.
7 changes: 7 additions & 0 deletions paimon-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,12 @@ under the License.
<artifactId>paimon-shade-caffeine-2</artifactId>
<version>${paimon.shade.caffeine.version}-${paimon.shade.version}</version>
</dependency>

<dependency>
<groupId>org.apache.paimon</groupId>
<artifactId>paimon-shade-netty-4</artifactId>
<version>${paimon.shade.netty.version}-${paimon.shade.version}</version>
</dependency>
</dependencies>

<build>
Expand All @@ -129,6 +135,7 @@ under the License.
<include>org.apache.paimon:paimon-shade-jackson-2</include>
<include>org.apache.paimon:paimon-shade-guava-30</include>
<include>org.apache.paimon:paimon-shade-caffeine-2</include>
<include>org.apache.paimon:paimon-shade-netty-4</include>

<!-- Paimon -->
<include>org.apache.paimon:paimon-common</include>
Expand Down
2 changes: 1 addition & 1 deletion paimon-service/paimon-service-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ under the License.
<dependency>
<groupId>org.apache.paimon</groupId>
<artifactId>paimon-shade-netty-4</artifactId>
<version>4.1.100.Final-${paimon.shade.version}</version>
<version>${paimon.shade.netty.version}-${paimon.shade.version}</version>
</dependency>

<dependency>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ under the License.
<paimon.shade.jackson.version>2.14.2</paimon.shade.jackson.version>
<paimon.shade.guava.version>30.1.1-jre</paimon.shade.guava.version>
<paimon.shade.caffeine.version>2.9.3</paimon.shade.caffeine.version>
<paimon.shade.netty.version>4.1.100.Final</paimon.shade.netty.version>
<antlr4.version>4.8</antlr4.version>
<hadoop.version>2.8.5</hadoop.version>
<scala.version>2.12.15</scala.version>
Expand Down
4 changes: 4 additions & 0 deletions tools/maven/checkstyle.xml
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,10 @@ This file is based on the checkstyle file of Apache Beam.
<property name="illegalPkgs" value="com.github.ben-manes.caffeine"/>
<message key="import.illegal" value="{0}; Use paimon-shade-caffeine instead."/>
</module>
<module name="IllegalImport">
<property name="illegalPkgs" value="io.netty"/>
<message key="import.illegal" value="{0}; Use paimon-shade-netty instead."/>
</module>

<module name="RedundantModifier">
<!-- Checks for redundant modifiers on various symbol definitions.
Expand Down

0 comments on commit ba476a5

Please sign in to comment.