Skip to content

Commit

Permalink
DBZ-7618 Implement Versioned interfaces in Transformation and Convert…
Browse files Browse the repository at this point in the history
…er plugins
  • Loading branch information
harveyyue committed Mar 10, 2024
1 parent 63b0a6b commit 4b52f08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
8 changes: 2 additions & 6 deletions src/main/java/io/debezium/connector/db2/Module.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
*/
package io.debezium.connector.db2;

import java.util.Properties;

import io.debezium.util.IoUtil;
import io.debezium.util.VersionParser;

/**
* Information about this module.
Expand All @@ -16,10 +14,8 @@
*/
public final class Module {

private static final Properties INFO = IoUtil.loadProperties(Module.class, "io/debezium/connector/db2/build.version");

public static String version() {
return INFO.getProperty("version");
return VersionParser.getVersion();
}

/**
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/io/debezium/connector/db2/build.version

This file was deleted.

0 comments on commit 4b52f08

Please sign in to comment.