|
|
@@ -0,0 +1,108 @@
|
|
|
+<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
+ <modelVersion>4.0.0</modelVersion>
|
|
|
+ <parent>
|
|
|
+ <groupId>com.ruoyi</groupId>
|
|
|
+ <artifactId>ruoyi-modules</artifactId>
|
|
|
+ <version>3.6.5</version>
|
|
|
+ </parent>
|
|
|
+
|
|
|
+ <artifactId>ruoyi-qxsb</artifactId>
|
|
|
+ <description>
|
|
|
+ ruoyi-qxsb气象土壤墒情
|
|
|
+ </description>
|
|
|
+
|
|
|
+ <dependencies>
|
|
|
+
|
|
|
+ <!-- SpringCloud Alibaba Nacos -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringCloud Alibaba Nacos Config -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Spring WEB -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringCloud Alibaba Sentinel -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.alibaba.cloud</groupId>
|
|
|
+ <artifactId>spring-cloud-starter-alibaba-sentinel</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- SpringBoot Actuator -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-starter-actuator</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Quartz -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.quartz-scheduler</groupId>
|
|
|
+ <artifactId>quartz</artifactId>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>com.mchange</groupId>
|
|
|
+ <artifactId>c3p0</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- Mysql Connector -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-j</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- RuoYi Common Log -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.ruoyi</groupId>
|
|
|
+ <artifactId>ruoyi-common-log</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <!-- RuoYi Common Swagger -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.ruoyi</groupId>
|
|
|
+ <artifactId>ruoyi-common-swagger</artifactId>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ <!-- 建大仁科 SDK -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>rk.netdevice</groupId>
|
|
|
+ <artifactId>netdevicesdkp2</artifactId>
|
|
|
+ <version>2.2.7</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+
|
|
|
+ </dependencies>
|
|
|
+
|
|
|
+ <build>
|
|
|
+ <finalName>${project.artifactId}</finalName>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>repackage</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+</project>
|