diff --git a/api/src/main/java/io/github/applecommander/bastokenizer/api/BasTokenizer.java b/api/src/main/java/io/github/applecommander/bastokenizer/api/BasTokenizer.java new file mode 100644 index 0000000..4a5826a --- /dev/null +++ b/api/src/main/java/io/github/applecommander/bastokenizer/api/BasTokenizer.java @@ -0,0 +1,14 @@ +package io.github.applecommander.bastokenizer.api; + +/** + * Since there are many pieces to bastokenizer, the version information is just a small, + * dedicated class. + */ +public class BasTokenizer { + public static final String VERSION; + static { + VERSION = BasTokenizer.class.getPackage().getImplementationVersion(); + } + + private BasTokenizer() {} +}