2022-04-06 17:49:00 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>top.octopusyan</groupId>
|
|
|
|
<artifactId>YanFrp</artifactId>
|
2022-04-11 16:14:13 +08:00
|
|
|
<version>1.0.3-SNAPSHOT</version>
|
2022-04-06 17:49:00 +08:00
|
|
|
<name>YanFrp</name>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<junit.version>5.8.1</junit.version>
|
|
|
|
|
|
|
|
<datafx.version>8.0.1</datafx.version>
|
|
|
|
<okhttp3.version>4.8.1</okhttp3.version>
|
|
|
|
<feign.version>11.8</feign.version>
|
|
|
|
<ikonli.version>2.6.0</ikonli.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
<!-- UI 库 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.jfoenix</groupId>
|
|
|
|
<artifactId>jfoenix</artifactId>
|
|
|
|
<version>8.0.10</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.controlsfx</groupId>
|
|
|
|
<artifactId>controlsfx</artifactId>
|
|
|
|
<version>11.0.3</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 图标库 -->
|
|
|
|
<!-- https://kordamp.org/ikonli/ -->
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.kordamp.ikonli/ikonli-javafx -->
|
|
|
|
<!-- javafx 支持 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.kordamp.ikonli</groupId>
|
|
|
|
<artifactId>ikonli-javafx</artifactId>
|
|
|
|
<version>${ikonli.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- fontawesome图标 java8 不支持 ikonli-fontawesome5-pack -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.kordamp.ikonli</groupId>
|
|
|
|
<artifactId>ikonli-fontawesome-pack</artifactId>
|
|
|
|
<version>${ikonli.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- lombok -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.18.14</version>
|
2022-04-09 03:59:20 +08:00
|
|
|
<scope>compile</scope> <!-- 解决 slf4j 冲突问题 -->
|
2022-04-06 17:49:00 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- slf4j -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>1.7.36</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<version>1.7.36</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2022-04-09 03:59:20 +08:00
|
|
|
<!-- commons -->
|
2022-04-06 17:49:00 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.12.0</version>
|
|
|
|
</dependency>
|
2022-04-09 03:59:20 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.11.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2022-04-06 17:49:00 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-crypto</artifactId>
|
|
|
|
<version>5.8.0.M2</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 算法库 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
<version>1.70</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- json -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<version>1.2.80</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- okhttp -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
<version>${okhttp3.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
<artifactId>logging-interceptor</artifactId>
|
|
|
|
<version>${okhttp3.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.squareup.okio</groupId>
|
|
|
|
<artifactId>okio</artifactId>
|
|
|
|
<version>2.8.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 测试 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--验证码-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.axet</groupId>
|
|
|
|
<artifactId>kaptcha</artifactId>
|
|
|
|
<version>0.0.9</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- html 解析 -->
|
|
|
|
<dependency>
|
|
|
|
<!-- jsoup HTML parser library @ https://jsoup.org/ -->
|
|
|
|
<groupId>org.jsoup</groupId>
|
|
|
|
<artifactId>jsoup</artifactId>
|
|
|
|
<version>1.14.3</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>8</source>
|
|
|
|
<target>8</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
2022-04-09 03:59:20 +08:00
|
|
|
<groupId>com.zenjava</groupId>
|
2022-04-06 17:49:00 +08:00
|
|
|
<artifactId>javafx-maven-plugin</artifactId>
|
2022-04-09 03:59:20 +08:00
|
|
|
<version>8.8.3</version>
|
|
|
|
<configuration>
|
|
|
|
<vendor>analysis</vendor>
|
|
|
|
<mainClass>top.octopusyan.YanFrpLuncher</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<version>3.2.0</version>
|
2022-04-06 17:49:00 +08:00
|
|
|
<executions>
|
|
|
|
<execution>
|
2022-04-09 03:59:20 +08:00
|
|
|
<id>make-assembly</id>
|
|
|
|
<!-- 绑定到package生命周期 -->
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<!-- 只运行一次 -->
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
2022-04-06 17:49:00 +08:00
|
|
|
</execution>
|
|
|
|
</executions>
|
2022-04-09 03:59:20 +08:00
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<mainClass>top.octopusyan.YanFrpLuncher</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
2022-04-06 17:49:00 +08:00
|
|
|
</plugin>
|
2022-04-09 03:59:20 +08:00
|
|
|
<!-- <plugin>-->
|
|
|
|
<!-- <groupId>org.openjfx</groupId>-->
|
|
|
|
<!-- <artifactId>javafx-maven-plugin</artifactId>-->
|
|
|
|
<!-- <version>0.0.8</version>-->
|
|
|
|
<!-- <executions>-->
|
|
|
|
<!-- <execution>-->
|
|
|
|
<!-- <!– Default configuration for running with: mvn clean javafx:run –>-->
|
|
|
|
<!-- <id>default-cli</id>-->
|
|
|
|
<!-- <configuration>-->
|
|
|
|
<!-- <mainClass>top.octopusyan/top.octopusyan.YanFrpLuncher</mainClass>-->
|
|
|
|
<!-- <launcher>app</launcher>-->
|
|
|
|
<!-- <jlinkZipName>app</jlinkZipName>-->
|
|
|
|
<!-- <jlinkImageName>app</jlinkImageName>-->
|
|
|
|
<!-- <noManPages>true</noManPages>-->
|
|
|
|
<!-- <stripDebug>true</stripDebug>-->
|
|
|
|
<!-- <noHeaderFiles>true</noHeaderFiles>-->
|
|
|
|
<!-- </configuration>-->
|
|
|
|
<!-- </execution>-->
|
|
|
|
<!-- </executions>-->
|
|
|
|
<!-- </plugin>-->
|
2022-04-06 17:49:00 +08:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|