!106 修复jlink错误问题

Merge pull request !106 from Luke/release-v1.1.13
This commit is contained in:
Luke 2023-09-19 16:09:10 +00:00 committed by Gitee
commit 745e14a96e
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
4 changed files with 10 additions and 3 deletions

Binary file not shown.

View File

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

View File

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

View File

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