Skip to content

Commit

Permalink
<feat>(console): adapt code-gen 1.5.0. (#836)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyonRay authored Mar 12, 2024
1 parent 4ef8243 commit f31bccd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ googleJavaFormat {
include '**/*.java'
}

def log4j_version = '2.19.0'
def log4j_version = '2.22.1'
List logger = [
"org.apache.logging.log4j:log4j-api:$log4j_version",
"org.apache.logging.log4j:log4j-core:$log4j_version",
Expand All @@ -50,7 +50,7 @@ dependencies {
exclude group: "org.slf4j"
}
implementation('commons-cli:commons-cli:1.5.0')
implementation('org.jline:jline:3.21.0')
implementation('org.jline:jline:3.25.0')
implementation('io.bretty:console-table-builder:1.2')
implementation('com.github.jsqlparser:jsqlparser:2.0')
implementation('org.fisco-bcos.code-generator:bcos-code-generator:1.5.0-SNAPSHOT') {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/console/common/ConsoleUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -856,7 +856,7 @@ public static void main(String[] args) {
"t",
TRANSACTION_VERSION,
true,
"[Optional] Specify transaction version interface, default is 0; If you want to use the latest transaction interface, please specify 1.");
"[Optional] Specify transaction version interface, default is 0; Supporting {0,1,2}; If you want to use the latest transaction interface, please specify 2.");
transactionVersion.setRequired(false);
options.addOption(transactionVersion);
if (mode.equals("solidity")) {
Expand Down

0 comments on commit f31bccd

Please sign in to comment.