<?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>eu.europa.ec.simpl</groupId> <artifactId>simpl-parent</artifactId> <version>1.0.1</version> <relativePath/> <!-- lookup parent from repository --> </parent> <artifactId>tls-gateway</artifactId> <version>1.0.2</version> <packaging>jar</packaging> <name>tls-gateway</name> <description>TLS Gateway</description> <dependencies> <dependency> <groupId>eu.europa.ec.simpl</groupId> <artifactId>simpl-spring-boot-starter</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-webflux</artifactId> </dependency> <dependency> <groupId>eu.europa.ec.simpl</groupId> <artifactId>certificate-revocation-common</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-gateway</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-security</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-oauth2-resource-server</artifactId> </dependency> <dependency> <groupId>org.mapstruct</groupId> <artifactId>mapstruct</artifactId> </dependency> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>eu.europa.ec.simpl</groupId> <artifactId>simpl-test-lib</artifactId> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> </plugins> </build> <repositories> <repository> <id>common-maven</id> <url>https://code.europa.eu/api/v4/projects/796/packages/maven</url> </repository> <repository> <id>http-client-maven</id> <url>https://code.europa.eu/api/v4/projects/859/packages/maven</url> </repository> </repositories> </project>