11# Instancify Scriptify
22Instancify Scriptify is a library to evaluate scripts written in JavaScript with ability to add global functions and variables.
33
4+ ## What is it for?
5+ This library is designed to execute JavaScript scripts and has the ability to register global functions and constants.
6+ It also allows you to configure security for executing scripts.
7+
48## Maven
59Adding repo:
610``` xml
@@ -17,7 +21,7 @@ For adding a library only:
1721<dependency >
1822 <groupId >com.instancify.scriptify</groupId >
1923 <artifactId >core</artifactId >
20- <version >1.3.6 -SNAPSHOT</version >
24+ <version >1.4.0 -SNAPSHOT</version >
2125</dependency >
2226```
2327
@@ -26,12 +30,12 @@ For adding a library with JS for Rhino or GraalVM:
2630<dependency >
2731 <groupId >com.instancify.scriptify</groupId >
2832 <artifactId >script-js-rhino</artifactId >
29- <version >1.3.6 -SNAPSHOT</version >
33+ <version >1.4.0 -SNAPSHOT</version >
3034</dependency >
3135<dependency >
3236 <groupId >com.instancify.scriptify</groupId >
3337 <artifactId >script-js-graalvm</artifactId >
34- <version >1.3.6 -SNAPSHOT</version >
38+ <version >1.4.0 -SNAPSHOT</version >
3539</dependency >
3640```
3741## Gradle
@@ -45,11 +49,11 @@ maven {
4549
4650For adding a library only:
4751``` groovy
48- implementation "com.instancify.scriptify:core:1.3.6 -SNAPSHOT"
52+ implementation "com.instancify.scriptify:core:1.4.0 -SNAPSHOT"
4953```
5054
5155For adding a library with JS for Rhino or GraalVM:
5256``` groovy
53- implementation "com.instancify.scriptify:script-js-rhino:1.3.6 -SNAPSHOT"
54- implementation "com.instancify.scriptify:script-js-graalvm:1.3.6 -SNAPSHOT"
57+ implementation "com.instancify.scriptify:script-js-rhino:1.4.0 -SNAPSHOT"
58+ implementation "com.instancify.scriptify:script-js-graalvm:1.4.0 -SNAPSHOT"
5559```
0 commit comments