2014-03-14 01:54:03 -04:00
|
|
|
<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/maven-v4_0_0.xsd">
|
|
|
|
<parent>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-project</artifactId>
|
2023-04-11 14:53:30 -04:00
|
|
|
<version>11.0.16-SNAPSHOT</version>
|
2014-03-14 01:54:03 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2021-02-10 16:21:22 -05:00
|
|
|
<artifactId>glassfish-jstl</artifactId>
|
|
|
|
<name>Glassfish :: JSTL module</name>
|
|
|
|
<url>https://projects.eclipse.org/projects/ee4j.glassfish</url>
|
2014-03-14 01:54:03 -04:00
|
|
|
<packaging>jar</packaging>
|
2014-08-15 05:35:49 -04:00
|
|
|
<properties>
|
2021-02-10 16:21:22 -05:00
|
|
|
<bundle-symbolic-name>${project.groupId}.glassfish.jstl</bundle-symbolic-name>
|
2022-03-05 04:47:32 -05:00
|
|
|
<jacoco.skip>true</jacoco.skip>
|
2014-08-15 05:35:49 -04:00
|
|
|
</properties>
|
2014-03-14 01:54:03 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2015-07-01 03:12:30 -04:00
|
|
|
<plugin>
|
2019-06-24 11:42:39 -04:00
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<useSystemClassLoader>false</useSystemClassLoader>
|
|
|
|
</configuration>
|
2015-07-01 03:12:30 -04:00
|
|
|
</plugin>
|
2014-03-14 01:54:03 -04:00
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- JSTL Api -->
|
|
|
|
<dependency>
|
2020-03-05 23:39:38 -05:00
|
|
|
<groupId>jakarta.servlet.jsp.jstl</groupId>
|
|
|
|
<artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
|
2014-03-14 01:54:03 -04:00
|
|
|
</dependency>
|
|
|
|
|
2020-03-15 21:53:46 -04:00
|
|
|
<dependency>
|
2021-02-10 16:21:22 -05:00
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
<artifactId>jakarta.servlet.jsp.jstl</artifactId>
|
2020-03-15 21:53:46 -04:00
|
|
|
</dependency>
|
2019-06-24 11:42:39 -04:00
|
|
|
|
2015-06-29 20:33:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-test-helper</artifactId>
|
2019-06-24 11:42:39 -04:00
|
|
|
<scope>test</scope>
|
2015-06-29 20:33:41 -04:00
|
|
|
</dependency>
|
2019-06-24 11:42:39 -04:00
|
|
|
|
2015-06-29 20:33:41 -04:00
|
|
|
<dependency>
|
2019-06-24 11:42:39 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>apache-jsp</artifactId>
|
|
|
|
<scope>test</scope>
|
2015-06-29 20:33:41 -04:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
2019-06-24 11:42:39 -04:00
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-annotations</artifactId>
|
|
|
|
<scope>test</scope>
|
2015-06-29 20:33:41 -04:00
|
|
|
</dependency>
|
2019-06-24 11:42:39 -04:00
|
|
|
|
2015-06-29 20:33:41 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-webapp</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2020-11-18 06:26:38 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2014-03-14 01:54:03 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
</project>
|