Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
pom.xml 3.19 KiB
Newer Older
Marco Amoia's avatar
Marco Amoia committed
<?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>
Marco Amoia's avatar
Marco Amoia committed
        <artifactId>simpl-parent</artifactId>
        <version>1.0.1</version>
Marco Amoia's avatar
Marco Amoia committed
        <relativePath/> <!-- lookup parent from repository -->
    </parent>

    <artifactId>tls-gateway</artifactId>
    <version>1.0.2</version>
Marco Amoia's avatar
Marco Amoia committed
    <packaging>jar</packaging>
Marco Amoia's avatar
Marco Amoia committed
    <name>tls-gateway</name>
    <description>TLS Gateway</description>

    <dependencies>
        <dependency>
            <groupId>eu.europa.ec.simpl</groupId>
Marco Amoia's avatar
Marco Amoia committed
            <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>
Marco Amoia's avatar
Marco Amoia committed
        <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>
Jean Claude Correale's avatar
Jean Claude Correale committed
        <dependency>
            <groupId>eu.europa.ec.simpl</groupId>
Jean Claude Correale's avatar
Jean Claude Correale committed
            <artifactId>simpl-test-lib</artifactId>
        </dependency>
Marco Amoia's avatar
Marco Amoia committed
    </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>
Marco Amoia's avatar
Marco Amoia committed
            <id>common-maven</id>
Marco Amoia's avatar
Marco Amoia committed
            <url>https://code.europa.eu/api/v4/projects/796/packages/maven</url>
        </repository>
Marco Amoia's avatar
Marco Amoia committed
        <repository>
Marco Amoia's avatar
Marco Amoia committed
            <id>http-client-maven</id>
Marco Amoia's avatar
Marco Amoia committed
            <url>https://code.europa.eu/api/v4/projects/859/packages/maven</url>
        </repository>
Marco Amoia's avatar
Marco Amoia committed
    </repositories>
</project>