<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>cloud.piranha.extension</groupId>
        <artifactId>project</artifactId>
        <version>20.7.0</version>
    </parent>

    <artifactId>piranha-extension-apachewebprofile</artifactId>
    <packaging>jar</packaging>

    <name>Piranha Extension - (Apache) Web Profile</name>
    <description>
        This Maven module delivers the Jakarta EE Web Profile backed by Apache
        implementation projects (where possible).
    </description>

    <dependencies>
        <!-- Jakarta Expression Language -->
        <dependency>
            <groupId>org.glassfish</groupId>
            <artifactId>jakarta.el</artifactId>
            <scope>runtime</scope>
        </dependency>
        <!-- Jakarta Pages -->
        <dependency>
            <groupId>org.glassfish.web</groupId>
            <artifactId>jakarta.servlet.jsp</artifactId>
            <scope>runtime</scope>
        </dependency>
        <!-- Piranha Security - Eleos integration -->
        <dependency>
            <groupId>cloud.piranha.security</groupId>
            <artifactId>piranha-security-eleos</artifactId>
            <version>${project.version}</version>
            <scope>runtime</scope>
        </dependency>
        <!-- Piranha Security - Exousia integration -->
        <dependency>
            <groupId>cloud.piranha.security</groupId>
            <artifactId>piranha-security-exousia</artifactId>
            <version>${project.version}</version>
            <scope>runtime</scope>
        </dependency>
        <!-- Piranha Security - Jakarta Security integration -->
        <dependency>
            <groupId>cloud.piranha.security</groupId>
            <artifactId>piranha-security-jakarta</artifactId>
            <version>${project.version}</version>
            <scope>runtime</scope>
        </dependency>
        <!-- Piranha Security - Soteria integration -->
        <dependency>
            <groupId>cloud.piranha.security</groupId>
            <artifactId>piranha-security-soteria</artifactId>
            <version>${project.version}</version>
            <scope>runtime</scope>
        </dependency>
        <!-- Piranha Upload - Apache Commons FileUpload integration -->
        <dependency>
            <groupId>cloud.piranha.upload</groupId>
            <artifactId>piranha-upload-apache</artifactId>
            <version>${project.version}</version>
            <scope>runtime</scope>
        </dependency>
        <!-- Piranha Webapplication - Annotation Scanning support -->
        <dependency>
            <groupId>cloud.piranha.webapp</groupId>
            <artifactId>piranha-webapp-annotationscan</artifactId>
            <version>${project.version}</version>
            <scope>compile</scope>
        </dependency>
        <!-- Piranha Webapplication - API -->
        <dependency>
            <groupId>cloud.piranha.webapp</groupId>
            <artifactId>piranha-webapp-api</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
        <!-- Piranha Webapplication - ServletContainerInitializer support -->
        <dependency>
            <groupId>cloud.piranha.webapp</groupId>
            <artifactId>piranha-webapp-scinitializer</artifactId>
            <version>${project.version}</version>
            <scope>compile</scope>
        </dependency>
        <!-- Piranha Webapplication - TEMPDIR support -->
        <dependency>
            <groupId>cloud.piranha.webapp</groupId>
            <artifactId>piranha-webapp-tempdir</artifactId>
            <version>${project.version}</version>
            <scope>compile</scope>
        </dependency>
        <!-- Piranha Webapplication - @WebServlet support -->
        <dependency>
            <groupId>cloud.piranha.webapp</groupId>
            <artifactId>piranha-webapp-webannotation</artifactId>
            <version>${project.version}</version>
            <scope>compile</scope>
        </dependency>
        <!-- Piranha Webapplication - web.xml support -->
        <dependency>
            <groupId>cloud.piranha.webapp</groupId>
            <artifactId>piranha-webapp-webxml</artifactId>
            <version>${project.version}</version>
            <scope>compile</scope>
        </dependency>
        <!-- Jakarta Bean Validation - Apache BVal -->
        <dependency>
            <groupId>jakarta.validation</groupId>
            <artifactId>jakarta.validation-api</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.bval</groupId>
            <artifactId>bval-jsr</artifactId>
            <scope>runtime</scope>
        </dependency>
        <!-- Tyrus - WebSocket support -->
        <dependency>
            <groupId>org.glassfish.tyrus</groupId>
            <artifactId>tyrus-container-servlet</artifactId>
            <scope>runtime</scope>
        </dependency>
        <!-- JSON Processing -->
        <dependency>
            <groupId>jakarta.json</groupId>
            <artifactId>jakarta.json-api</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.johnzon</groupId>
            <artifactId>johnzon-core</artifactId>
            <scope>runtime</scope>
        </dependency>
        <!-- JSON Binding -->
        <dependency>
            <groupId>jakarta.json.bind</groupId>
            <artifactId>jakarta.json.bind-api</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.johnzon</groupId>
            <artifactId>johnzon-jsonb</artifactId>
            <scope>runtime</scope>
        </dependency>
    </dependencies>
</project>
