| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
- <modelVersion>4.0.0</modelVersion>
- <groupId>com.jt.cloud</groupId>
- <artifactId>jt-gateway</artifactId>
- <version>2.6.1-SNAPSHOT</version>
- <name>jt-gateway</name>
- <description>API 服务网关,基于 Spring Cloud Gateway 实现</description>
- <url>https://github.com/YunaiV/jt-cloud</url>
- <dependencies>
- <dependency>
- <groupId>com.jt.cloud</groupId>
- <artifactId>jt-module-system-api</artifactId>
- <version>2.6.1-SNAPSHOT</version>
- <scope>compile</scope>
- <exclusions>
- <exclusion>
- <artifactId>springdoc-openapi-webmvc-core</artifactId>
- <groupId>org.springdoc</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-gateway</artifactId>
- <version>4.2.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>knife4j-gateway-spring-boot-starter</artifactId>
- <version>4.5.0</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.springframework.cloud</groupId>
- <artifactId>spring-cloud-starter-loadbalancer</artifactId>
- <version>4.2.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
- <version>2023.0.3.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.alibaba.cloud</groupId>
- <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
- <version>2023.0.3.2</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.jt.cloud</groupId>
- <artifactId>jt-spring-boot-starter-monitor</artifactId>
- <version>2.6.1-SNAPSHOT</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.google.guava</groupId>
- <artifactId>guava</artifactId>
- <version>33.4.8-jre</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>com.github.ben-manes.caffeine</groupId>
- <artifactId>caffeine</artifactId>
- <version>3.1.8</version>
- <scope>compile</scope>
- </dependency>
- </dependencies>
- <repositories>
- <repository>
- <id>huaweicloud</id>
- <name>huawei</name>
- <url>https://mirrors.huaweicloud.com/repository/maven/</url>
- </repository>
- <repository>
- <id>aliyunmaven</id>
- <name>aliyun</name>
- <url>https://maven.aliyun.com/repository/public</url>
- </repository>
- <repository>
- <snapshots>
- <enabled>false</enabled>
- </snapshots>
- <id>spring-milestones</id>
- <name>Spring Milestones</name>
- <url>https://repo.spring.io/milestone</url>
- </repository>
- <repository>
- <releases>
- <enabled>false</enabled>
- </releases>
- <id>spring-snapshots</id>
- <name>Spring Snapshots</name>
- <url>https://repo.spring.io/snapshot</url>
- </repository>
- </repositories>
- </project>
|