修复jlink错误问题

This commit is contained in:
许轲 2023-09-20 00:08:12 +08:00
parent 2d538c7867
commit 86819258fa
4 changed files with 10 additions and 3 deletions

Binary file not shown.

View File

@ -22,7 +22,10 @@
<groupId>org.fxmisc.richtext</groupId>
<artifactId>richtextfx</artifactId>
<version>0.11.1</version>
<scope>system</scope>
<systemPath>${project.basedir}/libs/richtextfx-fat-0.11.1.jar</systemPath>
</dependency>
<!--图标库主依赖-->
<dependency>
<groupId>org.kordamp.ikonli</groupId>
@ -46,6 +49,11 @@
<artifactId>javafx-fxml</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>

View File

@ -15,8 +15,7 @@ module org.jcnc.jnotepad {
requires org.kordamp.ikonli.core;
requires org.kordamp.ikonli.javafx;
requires org.kordamp.ikonli.antdesignicons;
requires org.fxmisc.richtext;
requires org.fxmisc.flowless;
requires richtextfx.fat;
exports org.jcnc.jnotepad;
exports org.jcnc.jnotepad.model.enums;
exports org.jcnc.jnotepad.app.config;

View File

@ -4,7 +4,7 @@ jpackage `
-m org.jcnc.jnotepad/org.jcnc.jnotepad.LunchApp `
--runtime-image .\target\JNotepad\ `
--icon src/main/resources/img/icon.ico `
--app-version 1.1.12 `
--app-version 1.1.13 `
--vendor "JCNC"