Skip to content

Commit

Permalink
bugfix: native-image AOT runtime GBK encoding error (#368)
Browse files Browse the repository at this point in the history
* bugfix: native-image AOT runtime GBK encoding error

* bugfix: native-image AOT runtime GBK encoding error
  • Loading branch information
funky-eyes authored Feb 5, 2025
1 parent b356598 commit db68f89
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.alipay.sofa</groupId>
<artifactId>bolt</artifactId>
<version>1.6.11</version>
<version>1.6.12-SNAPSHOT</version>
<packaging>jar</packaging>

<name>${project.groupId}:${project.artifactId}</name>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="GBK"?>
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">

<!-- Log4j 1.x config -->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="GBK"?>
<?xml version="1.0" encoding="UTF-8"?>

<!-- Log4j 2.x config -->
<Configuration status="OFF">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="GBK"?>
<?xml version="1.0" encoding="UTF-8"?>

<!-- Logback config -->
<configuration>
Expand Down

0 comments on commit db68f89

Please sign in to comment.