2023-06-14 09:20:34 +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>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>jeecg-boot-parent</artifactId>
|
|
|
|
<version>3.5.1</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>jeecg-module-abnormal-alarm</artifactId>
|
|
|
|
|
2023-06-16 09:35:20 +08:00
|
|
|
<properties>
|
|
|
|
<hutool.version>5.8.19</hutool.version>
|
|
|
|
</properties>
|
|
|
|
|
2023-06-14 09:20:34 +08:00
|
|
|
<dependencies>
|
2023-06-21 14:48:47 +08:00
|
|
|
<!-- jeecg-system-cloud-api -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>jeecg-system-cloud-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-06-14 09:20:34 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>jeecg-boot-base-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2023-06-15 14:02:04 +08:00
|
|
|
<dependency>
|
2023-06-16 10:06:50 +08:00
|
|
|
<groupId>org.jeecgframework.boot</groupId>
|
|
|
|
<artifactId>jeecg-boot-starter-cloud</artifactId>
|
2023-06-15 14:02:04 +08:00
|
|
|
</dependency>
|
2023-11-15 20:09:17 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.mrmike</groupId>
|
|
|
|
<artifactId>ok2curl</artifactId>
|
|
|
|
<version>0.7.0</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netease.qiye</groupId>
|
|
|
|
<artifactId>open-common</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/open-common-1.0-SNAPSHOT.jar</systemPath>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.netease.qiye</groupId>
|
|
|
|
<artifactId>open-sdk</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/lib/open-sdk-20211201132528.jar</systemPath>
|
|
|
|
</dependency>
|
2023-06-14 09:20:34 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|