2025-09-26 11:55:38 +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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<parent>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi</artifactId>
|
|
|
|
|
|
<version>3.8.9</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
|
|
<artifactId>ruoyi-video</artifactId>
|
|
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
|
|
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
2025-10-07 13:14:55 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
|
|
<version>1.3.2</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-09-27 15:32:48 +08:00
|
|
|
|
<!-- 通用工具 -->
|
2025-09-26 11:55:38 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-common</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
<version>1.18.24</version>
|
2025-09-27 15:32:48 +08:00
|
|
|
|
<scope>provided</scope>
|
2025-09-26 11:55:38 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-09-27 15:32:48 +08:00
|
|
|
|
<!-- 包含 OpenCV/FFmpeg 等全部平台原生库(win/linux/mac) -->
|
2025-09-26 11:55:38 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.bytedeco</groupId>
|
2025-09-27 15:32:48 +08:00
|
|
|
|
<artifactId>javacv-platform</artifactId>
|
2025-09-28 18:09:55 +08:00
|
|
|
|
<version>1.5.12</version>
|
2025-09-28 18:30:39 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>org.bytedeco</groupId>
|
|
|
|
|
|
<artifactId>opencv</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
2025-09-28 18:09:55 +08:00
|
|
|
|
</dependency>
|
2025-09-28 18:30:39 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 明确指定OpenCV版本 -->
|
2025-09-28 18:09:55 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.bytedeco</groupId>
|
|
|
|
|
|
<artifactId>opencv-platform</artifactId>
|
|
|
|
|
|
<version>4.11.0-1.5.12</version>
|
2025-09-26 11:55:38 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-09-28 18:30:39 +08:00
|
|
|
|
|
2025-09-27 15:32:48 +08:00
|
|
|
|
<!-- 解析 models.json-->
|
2025-09-26 11:55:38 +08:00
|
|
|
|
<dependency>
|
2025-09-27 15:32:48 +08:00
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
|
<version>2.17.1</version>
|
2025-09-26 11:55:38 +08:00
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-09-27 15:32:48 +08:00
|
|
|
|
<!-- 你的其它业务依赖:保持不变 -->
|
2025-09-26 11:55:38 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
|
<version>5.3.3</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
|
|
<artifactId>netty-all</artifactId>
|
|
|
|
|
|
<version>4.1.59.Final</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-09-27 15:32:48 +08:00
|
|
|
|
<!-- commons-io -->
|
2025-09-26 11:55:38 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
|
|
<version>2.11.0</version>
|
|
|
|
|
|
</dependency>
|
2025-09-27 15:32:48 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- commons-lang(注意这是 2.x 老版,如果无强依赖可考虑迁移到 commons-lang3) -->
|
2025-09-26 11:55:38 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
|
</dependency>
|
2025-09-28 18:23:21 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
|
|
<artifactId>testng</artifactId>
|
|
|
|
|
|
<version>7.11.0</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
|
<artifactId>spring-aop</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-09-29 10:37:12 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-common</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-09-29 13:25:54 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-framework</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-10-08 13:40:04 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.ruoyi</groupId>
|
|
|
|
|
|
<artifactId>ruoyi-quartz</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-09-26 11:55:38 +08:00
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
2025-09-28 18:30:39 +08:00
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<!-- 其他插件 -->
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-enforcer-plugin</artifactId>
|
|
|
|
|
|
<version>3.4.1</version>
|
|
|
|
|
|
<executions>
|
|
|
|
|
|
<execution>
|
|
|
|
|
|
<id>enforce-versions</id>
|
|
|
|
|
|
<goals>
|
|
|
|
|
|
<goal>enforce</goal>
|
|
|
|
|
|
</goals>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<rules>
|
|
|
|
|
|
<dependencyConvergence />
|
|
|
|
|
|
</rules>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</execution>
|
|
|
|
|
|
</executions>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
2025-09-26 11:55:38 +08:00
|
|
|
|
</project>
|