MVN

struts : struts-scripting

Maven & Gradle

Jan 26, 2006

Struts Scripting · This project allows Struts Actions to be written in the scripting language of one's choice rather than as Java classes. It uses the Beans Scripting Framework to allow scripts to be written in any language BSF supports like Perl, Python, Ruby, JavaScript, BeanShell, and even VBScript.

<dependency>
    <groupId>struts</groupId>
    <artifactId>struts-scripting</artifactId>
    <version>1.0.1</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of struts : struts-scripting to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 1.0.1

All Versions

Choose a version of struts : struts-scripting to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
1.0.x
struts-scripting-1.0.1

How to add a dependency to Maven

Add the following struts : struts-scripting maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>struts</groupId>
    <artifactId>struts-scripting</artifactId>
    <version>1.0.1</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following struts : struts-scripting gradle dependency to your build.gradle file:

implementation 'struts:struts-scripting:1.0.1'

Gradle Kotlin DSL: Add the following struts : struts-scripting gradle kotlin dependency to your build.gradle.kts file:

implementation("struts:struts-scripting:1.0.1")

How to add a dependency to SBT Scala

SBT Scala: Add the following struts : struts-scripting sbt scala dependency to your build.sbt file:

libraryDependencies += "struts" % "struts-scripting" % "1.0.1"