2019-11-16 14:37:07 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-14 08:13:57 -04:00
|
|
|
<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">
|
2019-11-16 14:37:07 -05:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-zuul-rate-limiting</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<name>spring-zuul-rate-limiting</name>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung.spring.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-zuul</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
2022-03-13 05:18:44 -04:00
|
|
|
|
2022-02-22 11:23:39 -05:00
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
<artifactId>log4j-bom</artifactId>
|
|
|
|
<version>${log4j2.version}</version>
|
|
|
|
<scope>import</scope>
|
|
|
|
<type>pom</type>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
2019-11-16 14:37:07 -05:00
|
|
|
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.marcosbarbero.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-zuul-ratelimit</artifactId>
|
|
|
|
<version>${rate.limit.version}</version>
|
|
|
|
</dependency>
|
2021-03-15 18:28:11 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
<artifactId>spring-cloud-starter-netflix-zuul</artifactId>
|
|
|
|
</dependency>
|
2019-12-05 09:56:52 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-jpa</artifactId>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
2019-11-16 14:37:07 -05:00
|
|
|
<build>
|
|
|
|
<finalName>spring-zuul-rate-limiting</finalName>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<rate.limit.version>2.2.0.RELEASE</rate.limit.version>
|
2021-12-16 06:21:02 -05:00
|
|
|
<spring-boot.version>2.4.7</spring-boot.version>
|
|
|
|
<spring-cloud-dependencies.version>2020.0.4</spring-cloud-dependencies.version>
|
2022-02-22 11:23:39 -05:00
|
|
|
<log4j2.version>2.17.1</log4j2.version>
|
2019-11-16 14:37:07 -05:00
|
|
|
</properties>
|
|
|
|
|
2021-05-14 08:13:57 -04:00
|
|
|
</project>
|