diff options
Diffstat (limited to 'microservices/02-api-gateway/pom.xml')
| -rw-r--r-- | microservices/02-api-gateway/pom.xml | 87 |
1 files changed, 87 insertions, 0 deletions
diff --git a/microservices/02-api-gateway/pom.xml b/microservices/02-api-gateway/pom.xml new file mode 100644 index 0000000..5757e6a --- /dev/null +++ b/microservices/02-api-gateway/pom.xml @@ -0,0 +1,87 @@ +<?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 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>4.1.0</version> + <relativePath /> <!-- lookup parent from repository --> + </parent> + <groupId>com.example</groupId> + <artifactId>api-gateway</artifactId> + <version>0.0.1-SNAPSHOT</version> + <name /> + <description /> + <url /> + <licenses> + <license /> + </licenses> + <developers> + <developer /> + </developers> + <scm> + <connection /> + <developerConnection /> + <tag /> + <url /> + </scm> + <properties> + <java.version>25</java.version> + <spring-cloud.version>2025.1.2</spring-cloud.version> + </properties> + <dependencies> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-security-oauth2-client</artifactId> + </dependency> + <dependency> + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-starter-gateway-server-webflux</artifactId> + </dependency> + <dependency> + <groupId>com.c4-soft.springaddons</groupId> + <artifactId>spring-addons-starter-oidc</artifactId> + <version>9.1.4</version> + </dependency> + + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-devtools</artifactId> + <scope>runtime</scope> + <optional>true</optional> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-thymeleaf-test</artifactId> + <scope>test</scope> + </dependency> + <dependency> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-starter-security-oauth2-client-test</artifactId> + <scope>test</scope> + </dependency> + </dependencies> + <dependencyManagement> + <dependencies> + <dependency> + <groupId>org.springframework.cloud</groupId> + <artifactId>spring-cloud-dependencies</artifactId> + <version>${spring-cloud.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <build> + <plugins> + <plugin> + <groupId>org.springframework.boot</groupId> + <artifactId>spring-boot-maven-plugin</artifactId> + </plugin> + </plugins> + </build> + +</project>
\ No newline at end of file |
