| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <?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>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-parent</artifactId>
- <version>3.3.5</version>
- <relativePath/>
- </parent>
-
- <groupId>com.water</groupId>
- <artifactId>wm-parent</artifactId>
- <version>1.0.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <name>智慧水务管理系统</name>
- <description>精河县供水工程综合管理平台</description>
-
- <properties>
- <java.version>17</java.version>
- <spring-cloud.version>2023.0.3</spring-cloud.version>
- <spring-cloud-alibaba.version>2023.0.1.0</spring-cloud-alibaba.version>
- <mybatis-plus.version>3.5.7</mybatis-plus.version>
- <sa-token.version>1.39.0</sa-token.version>
- <hutool.version>5.8.29</hutool.version>
- <knife4j.version>4.5.0</knife4j.version>
- <easyexcel.version>3.3.4</easyexcel.version>
- <postgis.version>2023.1.0</postgis.version>
- <minio.version>8.5.10</minio.version>
- </properties>
-
- <modules>
- <module>wm-common</module>
- <module>wm-gateway</module>
- <module>wm-base</module>
- <module>wm-iot</module>
- <module>wm-data-engine</module>
- <module>wm-bpm</module>
- <module>wm-bpm-engine</module>
- <module>wm-production</module>
- <module>wm-revenue</module>
- <module>wm-patrol</module>
- <module>wm-bi</module>
- <module>wm-notify</module>
- <module>wm-job</module>
- <module>wm-dispatch</module>
- <module>wm-system</module>
- <module>wm-mobile-app</module>
- <module>wm-config</module>
- </modules>
-
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-dependencies</artifactId>
- <version>${spring-cloud.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-alibaba-dependencies</artifactId>
- <version>${spring-cloud-alibaba.version}</version>
- <type>pom</type>
- <scope>import</scope>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-spring-boot3-starter</artifactId>
- <version>${mybatis-plus.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-spring-boot3-starter</artifactId>
- <version>${sa-token.version}</version>
- </dependency>
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>knife4j-openapi3-jakarta-spring-boot-starter</artifactId>
- <version>${knife4j.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>easyexcel</artifactId>
- <version>${easyexcel.version}</version>
- </dependency>
- <dependency>
- <groupId>net.postgis</groupId>
- <artifactId>postgis-jdbc</artifactId>
- <version>${postgis.version}</version>
- </dependency>
- <dependency>
- <groupId>io.minio</groupId>
- <artifactId>minio</artifactId>
- <version>${minio.version}</version>
- </dependency>
- <dependency>
- <groupId>com.water</groupId>
- <artifactId>wm-common</artifactId>
- <version>${project.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
-
- <dependencies>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <optional>true</optional>
- </dependency>
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|