2025-02-12 09:22:25 +00: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.bgasol</groupId>
|
|
|
|
|
<artifactId>plugin</artifactId>
|
|
|
|
|
<version>0.0.1</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>plugin-openfeign</artifactId>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.dev33</groupId>
|
|
|
|
|
<artifactId>sa-token-core</artifactId>
|
|
|
|
|
<version>${sa-token.version}</version>
|
|
|
|
|
</dependency>
|
2026-03-11 20:48:45 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
</dependency>
|
2026-03-12 10:12:23 +00:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
|
|
|
</dependency>
|
2025-02-12 09:22:25 +00:00
|
|
|
</dependencies>
|
|
|
|
|
</project>
|