BeanShell.
BeanShell is a small, free, embeddable Java source interpreter with object scripting language features, written in Java. BeanShell dynamically executes standard Java syntax and extends it with common scripting conveniences such as loose types, commands, and method closures like thos....
Here is the list of declaration for bsh. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.beanshell</groupId> <artifactId>bsh</artifactId> <version>2.0b5</version> </dependency>
If you think this Maven repository POM file listing for bsh is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:GNU LESSER GENERAL PUBLIC LICENSE
URL: http://www.gnu.org/copyleft/lesser.html.
The following packages are defined in the bsh-2.0b5.jar
bsh bsh.classpath bsh.collection bsh.commands bsh.engine bsh.org.objectweb.asm bsh.reflect bsh.servlet bsh.util
Here is the content of the POM file.
<?xml version="1.0" encoding="UTF-8"?> <project> <modelVersion>4.0.0</modelVersion> <groupId>org.beanshell</groupId> <artifactId>bsh</artifactId> <packaging>jar</packaging> <name>BeanShell</name> <version>2.0b5</version> <description>BeanShell is a small, free, embeddable Java source interpreter with object scripting language features, written in Java. BeanShell dynamically executes standard Java syntax and extends it with common scripting conveniences such as loose types, commands, and method closures like those in Perl and JavaScript. </description> <url>http://www.beanshell.org/</url> <licenses> <license> <name>GNU LESSER GENERAL PUBLIC LICENSE</name> <url>http://www.gnu.org/copyleft/lesser.html</url> </license> </licenses> <scm> <url>http://ikayzo.org/svn/beanshell</url> </scm> </project>