2025-08-09 01:37:25 +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>com.cdzy</groupId>
|
|
|
|
|
|
<artifactId>ebike-plus</artifactId>
|
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<artifactId>ebike-feign</artifactId>
|
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
<name>ebike-feign</name>
|
|
|
|
|
|
<description>ebike-feign</description>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<!-- Java Servlet -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
|
|
|
|
<version>6.0.0</version>
|
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
<version>${org.projectlombok.version}</version>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.cdzy</groupId>
|
|
|
|
|
|
<artifactId>ebike-common</artifactId>
|
|
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
|
|
<version>${jackson.version}</version>
|
|
|
|
|
|
</dependency>
|
2025-11-07 17:19:16 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- PostGIS 支持 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>net.postgis</groupId>
|
|
|
|
|
|
<artifactId>postgis-jdbc</artifactId>
|
|
|
|
|
|
<version>2025.1.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-12-30 11:20:29 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.locationtech.jts</groupId>
|
|
|
|
|
|
<artifactId>jts-core</artifactId>
|
|
|
|
|
|
<version>1.18.2</version> <!-- 请使用最新版本 -->
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
2025-08-09 01:37:25 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
|
<plugins>
|
|
|
|
|
|
<plugin>
|
|
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
|
|
<configuration>
|
|
|
|
|
|
<compilerArgs>
|
|
|
|
|
|
<arg>-implicit:class</arg> <!-- 可选值:none、class -->
|
|
|
|
|
|
</compilerArgs>
|
|
|
|
|
|
</configuration>
|
|
|
|
|
|
</plugin>
|
|
|
|
|
|
</plugins>
|
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|