Skip to content

Commit

Permalink
To set the version of ANTLR4 to 4.9.3 to make it compatible with JDK 8
Browse files Browse the repository at this point in the history
  • Loading branch information
mxsm committed Aug 4, 2023
1 parent eaf85f8 commit 56db18c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions eventmesh-connectors/eventmesh-connector-jdbc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ packageSources {
}

dependencies {
antlr("org.antlr:antlr4:4.12.0")
antlr("org.antlr:antlr4:4.9.3")
implementation project(":eventmesh-common")
implementation project(":eventmesh-openconnect:eventmesh-openconnect-java")
implementation project(":eventmesh-spi")
implementation 'com.zendesk:mysql-binlog-connector-java:0.28.0'
implementation 'org.antlr:antlr4-runtime:4.12.0'
implementation 'org.antlr:antlr4-runtime:4.9.3'
implementation 'mysql:mysql-connector-java:8.0.32'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public SnapshotTaskManager(Engine cdcEngine, JdbcSourceConfig jdbcSourceConfig)
@Override
public void init() {

if(this.jdbcSourceConfig.getSourceConnectorConfig().isSkipSnapshot()){
if (this.jdbcSourceConfig.getSourceConnectorConfig().isSkipSnapshot()) {
log.info("Skip snapshot not to handle");
return;
}
Expand Down

0 comments on commit 56db18c

Please sign in to comment.