新增视频管理模块,用于后续迁移 WVP-Platform(GB28181 视频监控平台)。 - viewsh-module-video-api: 契约层(Feign RPC 接口、枚举、错误码) - viewsh-module-video-server: 业务层(端口 48093) - 网关路由: video-admin-api / video-app-api - SecurityConfiguration: 放行 Swagger/Actuator/Druid/RPC Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
26 lines
855 B
XML
26 lines
855 B
XML
<?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">
|
||
<parent>
|
||
<artifactId>viewsh</artifactId>
|
||
<groupId>com.viewsh</groupId>
|
||
<version>${revision}</version>
|
||
</parent>
|
||
<modelVersion>4.0.0</modelVersion>
|
||
|
||
<artifactId>viewsh-module-video</artifactId>
|
||
<packaging>pom</packaging>
|
||
|
||
<modules>
|
||
<module>viewsh-module-video-api</module>
|
||
<module>viewsh-module-video-server</module>
|
||
</modules>
|
||
|
||
<name>${project.artifactId}</name>
|
||
<description>
|
||
video 模块,主要实现摄像头管理、视频流管理、录像回放、NVR 对接等功能。
|
||
</description>
|
||
|
||
</project>
|