<?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.5.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-webservlet</artifactId>
            <version>${project.version}</version>
            <scope>runtime</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>
        <!-- Tyrus - WebSocket support -->
        <dependency>
            <groupId>org.glassfish.tyrus</groupId>
            <artifactId>tyrus-container-servlet</artifactId>
            <version>1.16</version>
            <scope>runtime</scope>
        </dependency>
    </dependencies>    
</project>
