Add Nashorn Hello World project

- Gradle 9.5.1 (Groovy DSL) build with java + application plugins
- Nashorn standalone engine (org.openjdk.nashorn:nashorn-core:15.6)
- HelloNashorn.java: runs JS via NashornScriptEngineFactory
This commit is contained in:
OpenCode
2026-05-28 04:45:16 +00:00
commit 01f680d6e3
8 changed files with 380 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
plugins {
id 'java'
id 'application'
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.openjdk.nashorn:nashorn-core:15.6'
}
application {
mainClass = 'com.example.HelloNashorn'
}