Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 20 additions & 19 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@


<dependencies>

<!-- JavaFX -->
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
Expand All @@ -63,13 +65,25 @@
<version>21.0.1</version>
</dependency>

<!-- ControlsFX -->
<!-- ControlsFX - 提供了更多控件 -->
<dependency>
<groupId>org.controlsfx</groupId>
<artifactId>controlsfx</artifactId>
<version>11.2.2</version>
</dependency>

<dependency>
<groupId>org.fxmisc.richtext</groupId>
<artifactId>richtextfx</artifactId>
<version>0.11.5</version>
</dependency>

<dependency>
<groupId>com.gluonhq</groupId>
<artifactId>rich-text-area</artifactId>
<version>1.2.1</version>
</dependency>

<!-- Lombok -->
<dependency>
<groupId>org.projectlombok</groupId>
Expand Down Expand Up @@ -127,42 +141,29 @@
<version>2.2.2</version>
</dependency>

<dependency>
<groupId>org.fxmisc.richtext</groupId>
<artifactId>richtextfx</artifactId>
<version>0.11.5</version>
</dependency>

<dependency>
<groupId>com.gluonhq</groupId>
<artifactId>rich-text-area</artifactId>
<version>1.2.1</version> <!-- 你可以使用最新的版本 -->
</dependency>


<!--托盘与通知-->
<!-- FXTrayIcon - 托盘与通知-->
<dependency>
<groupId>com.dustinredmond.fxtrayicon</groupId>
<artifactId>FXTrayIcon</artifactId>
<version>4.2.3</version>
</dependency>

<!-- SLF4J API -->
<!-- SLF4J API - 日志门面 -->
<!-- Logback Classic会自动引入slf4j-api,所以这个可以不写,但为了清晰,写上也可以 -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>2.0.17</version>
</dependency>

<!-- Logback 实现 -->
<!-- Logback - 日志实现 -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.18</version> <!-- 保持和SLF4J版本兼容 -->
</dependency>

<!-- Janino -->
<!-- Janino - 用于logback.xml -->
<dependency>
<groupId>org.codehaus.janino</groupId>
<artifactId>janino</artifactId>
Expand Down Expand Up @@ -214,7 +215,7 @@
<version>12.4.0</version> <!-- 使用当前最新版本 -->
</dependency>

<!-- ikonli-fluentui-pack - 微软 Fluent UI 图标 -->
<!-- ikonli-fluentui-pack - 微软 Fluent UI 图标 -->
<dependency>
<groupId>org.kordamp.ikonli</groupId>
<artifactId>ikonli-fluentui-pack</artifactId>
Expand Down
Loading