| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- <?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <groupId>top.lvzhiqiang</groupId>
- <artifactId>l1024v-jav</artifactId>
- <version>1.0.0</version>
- <!-- 项目的名称和描述 -->
- <name>l1024v-jav-server</name>
- <description>jav服务</description>
- <properties>
- <maven.compiler.source>8</maven.compiler.source>
- <maven.compiler.target>8</maven.compiler.target>
- <maven.deploy.skip>true</maven.deploy.skip>
- <log4j2.version>2.17.1</log4j2.version>
- </properties>
- <parent>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>2.1.9.RELEASE</version>
- </parent>
- <dependencies>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <!-- 引入Web功能 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-web</artifactId>
- </dependency>
- <!-- Freemarker -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-freemarker</artifactId>
- </dependency>
- <!--log4j2-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter</artifactId>
- <exclusions>
- <!-- 排除自带的logback依赖 -->
- <exclusion>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-logging</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!-- 引入log4j2依赖 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-log4j2</artifactId>
- </dependency>
- <!--mybatis-->
- <dependency>
- <groupId>org.mybatis.spring.boot</groupId>
- <artifactId>mybatis-spring-boot-starter</artifactId>
- <version>2.1.0</version>
- </dependency>
- <dependency>
- <groupId>com.github.pagehelper</groupId>
- <artifactId>pagehelper-spring-boot-starter</artifactId>
- <version>1.2.12</version>
- </dependency>
- <dependency>
- <groupId>org.apache.commons</groupId>
- <artifactId>commons-lang3</artifactId>
- <version>3.7</version>
- </dependency>
- <!-- mysql的驱动 -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>8.0.17</version>
- </dependency>
- <!--lombok-->
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>1.16.20</version>
- </dependency>
- <!-- 单元测试 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!--fastjson-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>fastjson</artifactId>
- <version>2.0.44</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
- <dependency>
- <groupId>org.jsoup</groupId>
- <artifactId>jsoup</artifactId>
- <version>1.14.3</version>
- </dependency>
- <dependency>
- <groupId>com.microsoft.playwright</groupId>
- <artifactId>playwright</artifactId>
- <!--centos7系统需要降级到 v1.37.0 或更低(比如 v1.30.0),centos8可以用1.49.0以上。-->
- <!--CentOS 7 默认的 glibc 版本是 2.17,而 Playwright v1.49 自带的 Node.js 需要 glibc 2.27+。-->
- <!--运行你的 jar 包,它第一次启动会自动下载 chromium (~130MB) 到 ~/.cache/ms-playwright-->
- <version>1.30.0</version>
- <exclusions>
- <exclusion>
- <groupId>com.microsoft.playwright</groupId>
- <artifactId>driver-bundle</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <version>2.1.9.RELEASE</version>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-cp</artifactId>
- <version>4.5.0</version>
- </dependency>
- <dependency>
- <groupId>org.apache.httpcomponents</groupId>
- <artifactId>httpclient</artifactId>
- <version>4.5.13</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/ch.ethz.ganymed/ganymed-ssh2 -->
- <dependency>
- <groupId>ch.ethz.ganymed</groupId>
- <artifactId>ganymed-ssh2</artifactId>
- <version>262</version>
- <scope>test</scope>
- </dependency>
- <!--Markdown转Html-->
- <!-- https://mvnrepository.com/artifact/org.commonmark/commonmark -->
- <dependency>
- <groupId>org.commonmark</groupId>
- <artifactId>commonmark</artifactId>
- <version>0.21.0</version>
- </dependency>
- <!--扩展 标题-->
- <dependency>
- <groupId>org.commonmark</groupId>
- <artifactId>commonmark-ext-heading-anchor</artifactId>
- <version>0.21.0</version>
- </dependency>
- <!--扩展 表格-->
- <dependency>
- <groupId>org.commonmark</groupId>
- <artifactId>commonmark-ext-gfm-tables</artifactId>
- <version>0.21.0</version>
- </dependency>
- <!-- FTP文件操作 -->
- <dependency>
- <groupId>commons-net</groupId>
- <artifactId>commons-net</artifactId>
- <version>3.10.0</version>
- </dependency>
- <!-- Thumbnailator Dependency -->
- <dependency>
- <groupId>net.coobird</groupId>
- <artifactId>thumbnailator</artifactId>
- <version>0.4.18</version>
- </dependency>
- <!--redis-->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
- <dependency>
- <groupId>org.redisson</groupId>
- <artifactId>redisson-spring-boot-starter</artifactId>
- <version>3.11.5</version>
- </dependency>
- <!--poi-->
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi</artifactId>
- <version>3.17</version>
- </dependency>
- <dependency>
- <groupId>org.apache.poi</groupId>
- <artifactId>poi-ooxml</artifactId>
- <version>3.17</version>
- </dependency>
- <!--mp3agic-->
- <dependency>
- <groupId>com.mpatric</groupId>
- <artifactId>mp3agic</artifactId>
- <version>0.9.1</version>
- </dependency>
- <!-- 定时任务 -->
- <dependency>
- <groupId>com.xuxueli</groupId>
- <artifactId>xxl-job-core</artifactId>
- <version>2.3.1</version>
- </dependency>
- <!--Java内置SSH隧道(JSch库)-->
- <dependency>
- <groupId>com.jcraft</groupId>
- <artifactId>jsch</artifactId>
- <version>0.1.55</version>
- </dependency>
- <!-- JSch依赖BouncyCastle用于加密 -->
- <dependency>
- <groupId>org.bouncycastle</groupId>
- <artifactId>bcprov-jdk15on</artifactId>
- <version>1.70</version>
- </dependency>
- </dependencies>
- <build>
- <finalName>jav</finalName>
- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- <configuration>
- <!--JAR (默认): 使用 JarLauncher。它只能加载 JAR 包内部 BOOT-INF/lib 下的依赖,不支持外部依赖加载。-->
- <!--ZIP: 使用 PropertiesLauncher。这是 Spring Boot 专门设计用来支持 “从外部路径加载依赖” 的启动器。-->
- <!--当你配置了 <layout>ZIP</layout> 后,Maven 插件在打包时会自动修改 JAR 包里的 META-INF/MANIFEST.MF 文件,把 Main-Class 从默认的 JarLauncher 改为 PropertiesLauncher-->
- <layout>ZIP</layout>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </project>
|