MVN

org.beanshell : bsh

Maven & Gradle

Mar 16, 2012
184 usages

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 those in Perl and JavaScript.

<dependency>
    <groupId>org.beanshell</groupId>
    <artifactId>bsh</artifactId>
    <version>2.0b5</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.beanshell : bsh to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 2.0b5

All Versions

Choose a version of org.beanshell : bsh to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
2.0b5
bsh-2.0b5
CVE-2016-2510
2.0b4
bsh-2.0b4
CVE-2016-2510
1.3.x
bsh-1.3.0
CVE-2016-2510

How to add a dependency to Maven

Add the following org.beanshell : bsh maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.beanshell</groupId>
    <artifactId>bsh</artifactId>
    <version>2.0b5</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.beanshell : bsh gradle dependency to your build.gradle file:

implementation 'org.beanshell:bsh:2.0b5'

Gradle Kotlin DSL: Add the following org.beanshell : bsh gradle kotlin dependency to your build.gradle.kts file:

implementation("org.beanshell:bsh:2.0b5")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.beanshell : bsh sbt scala dependency to your build.sbt file:

libraryDependencies += "org.beanshell" % "bsh" % "2.0b5"

Advertisement