diff --git a/pom.xml b/pom.xml index 44344d7..284f875 100644 --- a/pom.xml +++ b/pom.xml @@ -9,8 +9,7 @@ 1.0-SNAPSHOT - 17 - 17 + UTF-8 19 @@ -76,13 +75,6 @@ ${javafx.version} - - com.github.leewyatt - rxcontrols - - 11.0.2 - - com.fasterxml.jackson.core jackson-core @@ -101,50 +93,37 @@ - - org.apache.maven.plugins - maven-jar-plugin - 3.1.0 + maven-compiler-plugin + 3.8.1 - - - true - lib/ - com.zhangmeng.minio.Start - - + 17 + 17 - org.apache.maven.plugins - maven-dependency-plugin - 3.1.1 + org.openjfx + javafx-maven-plugin + 0.0.8 - copy-dependencies - package - - copy-dependencies - + + default-cli - ${project.build.directory}/lib + + com.zhangmeng.minio/com.zhangmeng.minio.MiniToolsApplication + + app + app + app + true + true + true - - - - jitpack.io - https://jitpack.io - - - zm - http://123.57.75.116:49000/repository/zm/ - - \ No newline at end of file diff --git a/src/main/java/com/zhangmeng/minio/Start.java b/src/main/java/com/zhangmeng/minio/Start.java deleted file mode 100644 index 13ac4e0..0000000 --- a/src/main/java/com/zhangmeng/minio/Start.java +++ /dev/null @@ -1,15 +0,0 @@ -package com.zhangmeng.minio; - -import javafx.application.Application; - -/** - * @author zhangmeng - * @version 1.0 - * @date 2024-03-10 18:33 - */ -public class Start { - - public static void main(String[] args) { - Application.launch(MiniToolsApplication.class,args); - } -} diff --git a/src/main/java/module-info.java b/src/main/java/module-info.java new file mode 100644 index 0000000..18fae3a --- /dev/null +++ b/src/main/java/module-info.java @@ -0,0 +1,12 @@ +module com.zhangmeng.minio { + requires javafx.fxml; + requires javafx.controls; + requires javafx.base; + requires minio; + requires com.fasterxml.jackson.core; + requires tika.core; + requires org.apache.commons.lang3; + + opens com.zhangmeng.minio to javafx.fxml; + exports com.zhangmeng.minio; +} \ No newline at end of file