MVN

org.openjdk.nashorn : nashorn-core

Maven & Gradle

Apr 23, 2022
21 usages
405 stars

OpenJDK Nashorn · Nashorn is an Open Source JavaScript (ECMAScript 5.1 and some 6 features) engine for the JVM.

<dependency>
    <groupId>org.openjdk.nashorn</groupId>
    <artifactId>nashorn-core</artifactId>
    <version>15.4</version>
</dependency>
Copy
pom.xml
Table Of Contents

Latest Version

Choose a version of org.openjdk.nashorn : nashorn-core to add to Maven or Gradle - Latest Versions:

  • Latest Stable: 15.4

All Versions

Choose a version of org.openjdk.nashorn : nashorn-core to add to Maven or Gradle - All Versions:

Version Vulnerabilities Updated
15.4
nashorn-core-15.4
15.3
nashorn-core-15.3
15.2
nashorn-core-15.2
15.1.x
nashorn-core-15.1.1
15.1
nashorn-core-15.1
15.0
nashorn-core-15.0

How to add a dependency to Maven

Add the following org.openjdk.nashorn : nashorn-core maven dependency to the pom.xml file with your favorite IDE (IntelliJ / Eclipse / Netbeans):

<dependency>
    <groupId>org.openjdk.nashorn</groupId>
    <artifactId>nashorn-core</artifactId>
    <version>15.4</version>
</dependency>

How to add a dependency to Gradle

Gradle Groovy DSL: Add the following org.openjdk.nashorn : nashorn-core gradle dependency to your build.gradle file:

implementation 'org.openjdk.nashorn:nashorn-core:15.4'

Gradle Kotlin DSL: Add the following org.openjdk.nashorn : nashorn-core gradle kotlin dependency to your build.gradle.kts file:

implementation("org.openjdk.nashorn:nashorn-core:15.4")

How to add a dependency to SBT Scala

SBT Scala: Add the following org.openjdk.nashorn : nashorn-core sbt scala dependency to your build.sbt file:

libraryDependencies += "org.openjdk.nashorn" % "nashorn-core" % "15.4"

Advertisement