- 在pom.xml中添加爱玛电动车测试模块依赖 - 创建爱玛电动车测试模块数据库表结构 - 实现爱玛告警管理相关实体类、控制器、服务类和映射器 - 集成爱玛测试工作流执行监听器 - 完成爱玛告警管理的CRUD操作接口 - 重构TeTaskConfigInfoServiceImpl解决循环依赖问题
34 lines
939 B
XML
34 lines
939 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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot</artifactId>
|
|
<version>3.8.9</version>
|
|
</parent>
|
|
|
|
<artifactId>cmvr-iot-aima</artifactId>
|
|
|
|
<description>
|
|
爱玛电动车测试模块
|
|
</description>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-common</artifactId>
|
|
</dependency>
|
|
|
|
<!-- 测试模块-->
|
|
<dependency>
|
|
<groupId>com.cmvr</groupId>
|
|
<artifactId>cmvr-iot-test</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|