!4 修复算术验证码无法加载 JavaScript 引擎

Merge pull request !4 from Yoofff/dev
This commit is contained in:
2024-01-07 14:15:37 +00:00
committed by Gitee
2 changed files with 14 additions and 0 deletions

View File

@@ -21,5 +21,11 @@
<groupId>com.github.whvcse</groupId>
<artifactId>easy-captcha</artifactId>
</dependency>
<!-- Js 引擎(一个纯编译的 JavaScript 引擎) -->
<dependency>
<groupId>org.openjdk.nashorn</groupId>
<artifactId>nashorn-core</artifactId>
</dependency>
</dependencies>
</project>

View File

@@ -65,6 +65,7 @@
<aj-captcha.version>1.3.0</aj-captcha.version>
<easy-captcha.version>1.6.2</easy-captcha.version>
<easy-excel.version>3.3.3</easy-excel.version>
<nashorn.version>15.4</nashorn.version>
<x-file-storage.version>2.0.0</x-file-storage.version>
<aws-s3.version>1.12.626</aws-s3.version>
<knife4j.version>4.4.0</knife4j.version>
@@ -166,6 +167,13 @@
<version>${easy-captcha.version}</version>
</dependency>
<!-- Js 引擎(一个纯编译的 JavaScript 引擎) -->
<dependency>
<groupId>org.openjdk.nashorn</groupId>
<artifactId>nashorn-core</artifactId>
<version>${nashorn.version}</version>
</dependency>
<!-- Easy Excel一个基于 Java 的、快速、简洁、解决大文件内存溢出的 Excel 处理工具) -->
<dependency>
<groupId>com.alibaba</groupId>