CMVR-IOT/cmvr-iot-admin/pom.xml

130 lines
4.1 KiB
XML
Raw Normal View History

2025-08-21 14:39:54 +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">
<parent>
<artifactId>cmvr-iot</artifactId>
<groupId>com.cmvr</groupId>
2026-07-28 16:33:32 +08:00
<version>3.9.2</version>
2025-08-21 14:39:54 +08:00
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>cmvr-iot-admin</artifactId>
<description>
web服务入口
</description>
<dependencies>
<!-- spring-boot-devtools -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional> <!-- 表示依赖不会传递 -->
</dependency>
2026-07-28 16:33:32 +08:00
<!-- spring-doc -->
2025-08-21 14:39:54 +08:00
<dependency>
2026-07-28 16:33:32 +08:00
<groupId>org.springdoc</groupId>
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
</dependency>
<dependency>
<groupId>com.github.xiaoymin</groupId>
<artifactId>knife4j-openapi3-ui</artifactId>
2025-08-21 14:39:54 +08:00
</dependency>
2026-07-28 16:33:32 +08:00
<!-- Mysql驱动包 -->
2025-08-21 14:39:54 +08:00
<dependency>
2026-07-28 16:33:32 +08:00
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
2025-08-21 14:39:54 +08:00
</dependency>
<!-- 核心模块-->
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-framework</artifactId>
</dependency>
<!-- 定时任务-->
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-quartz</artifactId>
</dependency>
<!-- 代码生成-->
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-generator</artifactId>
</dependency>
2026-07-28 16:33:32 +08:00
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-test</artifactId>
</dependency>
2025-08-21 14:39:54 +08:00
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-device</artifactId>
</dependency>
2025-09-05 09:13:48 +08:00
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-vi</artifactId>
</dependency>
2025-11-24 17:26:20 +08:00
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-ti</artifactId>
</dependency>
2026-03-12 09:47:20 +08:00
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-evaluation</artifactId>
</dependency>
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-inspection</artifactId>
</dependency>
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-aima</artifactId>
</dependency>
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-tts</artifactId>
</dependency>
2026-07-28 16:33:32 +08:00
<dependency>
<groupId>com.cmvr</groupId>
<artifactId>cmvr-iot-quic</artifactId>
</dependency>
2025-08-21 14:39:54 +08:00
</dependencies>
2026-07-28 16:33:32 +08:00
2025-08-21 14:39:54 +08:00
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<configuration>
2026-07-28 16:33:32 +08:00
<addResources>true</addResources>
2025-08-21 14:39:54 +08:00
</configuration>
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
</plugin>
2026-07-28 16:33:32 +08:00
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.1.0</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<warName>${project.artifactId}</warName>
</configuration>
</plugin>
2025-08-21 14:39:54 +08:00
</plugins>
2026-07-28 16:33:32 +08:00
<finalName>${project.artifactId}</finalName>
2025-08-21 14:39:54 +08:00
</build>
2026-07-28 16:33:32 +08:00
2025-08-21 14:39:54 +08:00
</project>