You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Meeting error like below and start failed, while try to get beanshell version from version.properties
"Can't find resource for bundle java.util.PropertyResourceBundle, key release"
The reason is pre-defined version.properties name is duplicated with existing component. get 'release' and 'build' failed.
ResourceBundle b = ResourceBundle.getBundle("version");
VERSION = b.getString("release") + "." + b.getString("build");
Maybe need fix this issue in master branch.
The quick solution is renaming 'version.properties' to 'bsh-version.properties'
change code like below:
ResourceBundle b = ResourceBundle.getBundle("bsh-version");
The text was updated successfully, but these errors were encountered:
in bsh.Interpreter.java
Meeting error like below and start failed, while try to get beanshell version from version.properties
"Can't find resource for bundle java.util.PropertyResourceBundle, key release"
The reason is pre-defined version.properties name is duplicated with existing component. get 'release' and 'build' failed.
ResourceBundle b = ResourceBundle.getBundle("version");
VERSION = b.getString("release") + "." + b.getString("build");
Maybe need fix this issue in master branch.
The quick solution is renaming 'version.properties' to 'bsh-version.properties'
change code like below:
ResourceBundle b = ResourceBundle.getBundle("bsh-version");
The text was updated successfully, but these errors were encountered: