Files
wildfly-system-modules/jakarta-servlet-jstl-api/pom.xml

47 lines
1.4 KiB
XML

<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>
<groupId>com.inteligr8.wildfly.system</groupId>
<artifactId>jakarta.servlet.jstl.api</artifactId>
<packaging>pom</packaging>
<parent>
<groupId>com.inteligr8.wildfly</groupId>
<artifactId>system-wildfly-modules</artifactId>
<version>27.0.1.Final</version>
<relativePath>..</relativePath>
</parent>
<properties>
<wildfly.module.id>jakarta.servlet.jstl.api</wildfly.module.id>
</properties>
<dependencies>
<!-- not including basic Java or private JBoss dependencies -->
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.servlet.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>${project.groupId}</groupId>
<artifactId>javax.servlet.jsp.api</artifactId>
<version>${project.version}</version>
<type>pom</type>
</dependency>
<dependency>
<groupId>jakarta.servlet.jsp.jstl</groupId>
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
</dependency>
<dependency>
<groupId>org.glassfish.web</groupId>
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
<version>3.0.0</version>
<scope>runtime</scope>
</dependency>
</dependencies>
</project>