-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpom.xml
28 lines (28 loc) · 1.15 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.4.1</version>
<relativePath/>
</parent>
<groupId>com.ethlo.http</groupId>
<artifactId>cloud-gateway</artifactId>
<version>1.6.5-SNAPSHOT</version>
<packaging>pom</packaging>
<description>Spring Cloud Gateway powered reverse proxy</description>
<modules>
<module>cloud-gateway-core</module>
<module>cloud-gateway-logger-clickhouse</module>
<module>cloud-gateway-logger-file</module>
<module>cloud-gateway-server</module>
<module>cloud-gateway-resources-overlay</module>
</modules>
<properties>
<logback.version>1.5.16</logback.version>
<java.version>21</java.version>
<source.encoding>utf-8</source.encoding>
</properties>
</project>