QGIS地震专题图产出

This commit is contained in:
zzw
2026-06-02 17:10:47 +08:00
parent 9d95700787
commit 6bb5cf46f7
90 changed files with 5689 additions and 26 deletions
+56 -8
View File
@@ -7,12 +7,12 @@
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<mybatis.spring.version>3.0.5</mybatis.spring.version>
<druid.version>1.2.27</druid.version>
<postgresql.version>42.7.8</postgresql.version>
<lombok.version>1.18.42</lombok.version>
<bcprov-jdk15to18.version>1.82</bcprov-jdk15to18.version>
<fastjson.version>2.0.60</fastjson.version>
<mybatis-plus.version>3.5.9</mybatis-plus.version>
</properties>
<parent>
@@ -53,11 +53,11 @@
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<!-- MyBatis 整合 Spring Boot -->
<!-- mybatis-plus 整合 Spring Boot -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>${mybatis.spring.version}</version>
<groupId>com.baomidou</groupId>
<artifactId>mybatis-plus-spring-boot3-starter</artifactId>
<version>${mybatis-plus.version}</version>
</dependency>
<!-- 数据库连接池 Druid -->
@@ -72,7 +72,7 @@
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
<scope>runtime</scope>
<!-- <scope>runtime</scope>-->
</dependency>
<!-- WebSocket 支持 -->
@@ -126,6 +126,54 @@
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<!-- GIS空间数据处理工具 -->
<dependency>
<groupId>org.locationtech.jts</groupId>
<artifactId>jts-core</artifactId>
<version>1.19.0</version>
</dependency>
<!-- PostGIS TypeHandler 支持 -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-typehandlers-jsr310</artifactId>
<version>1.0.2</version>
</dependency>
<!-- PostGIS JTS 支持 -->
<dependency>
<groupId>net.postgis</groupId>
<artifactId>postgis-jdbc</artifactId>
<version>2021.1.0</version>
</dependency>
<dependency>
<groupId>org.hibernate.orm</groupId>
<artifactId>hibernate-spatial</artifactId>
<version>6.2.0.Final</version>
</dependency>
<!-- 坐标投影转换 -->
<dependency>
<groupId>org.locationtech.proj4j</groupId>
<artifactId>proj4j</artifactId>
<version>1.1.4</version>
</dependency>
<!--常用工具类 -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<!--rabbitmq-->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-amqp</artifactId>
<version>2.7.3</version>
</dependency>
</dependencies>
<profiles>
@@ -139,7 +187,7 @@
<activeByDefault>true</activeByDefault>
</activation>
</profile>
<!-- 生产环境 -->
<profile>
<id>prod</id>
@@ -173,7 +221,7 @@
</excludes>
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>