Adding version to the BT API.

This commit is contained in:
Rob Greene 2018-06-08 22:42:25 -05:00
parent 9446fe4126
commit 001cb40c9f

View File

@ -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() {}
}