2012-01-31 17:04:38 -05: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>
|
2016-09-08 16:04:11 -04:00
|
|
|
<version>9.2.20-SNAPSHOT</version>
|
2012-01-31 17:04:38 -05:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-jsp</artifactId>
|
2014-10-09 18:11:46 -04:00
|
|
|
<name>Jetty :: Glassfish JSP Implementation</name>
|
2013-05-21 14:10:07 -04:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2012-02-01 03:17:42 -05:00
|
|
|
<packaging>jar</packaging>
|
2012-01-31 17:04:38 -05:00
|
|
|
<build>
|
2013-08-22 17:52:02 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>package</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>single</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<descriptorRefs>
|
|
|
|
<descriptorRef>config</descriptorRef>
|
|
|
|
</descriptorRefs>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2012-01-31 17:04:38 -05:00
|
|
|
</build>
|
|
|
|
|
2012-02-01 10:59:00 -05:00
|
|
|
<dependencies>
|
2014-11-25 23:35:30 -05:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-util</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2013-07-11 23:20:26 -04:00
|
|
|
<!-- Schemas -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.toolchain</groupId>
|
|
|
|
<artifactId>jetty-schemas</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- servlet api -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2012-02-01 10:59:00 -05:00
|
|
|
<!-- JSP Api -->
|
2013-05-09 03:17:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp-api</artifactId>
|
|
|
|
</dependency>
|
2012-02-01 10:59:00 -05:00
|
|
|
<!-- JSP Impl -->
|
2013-05-09 03:17:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp</artifactId>
|
2012-02-01 10:59:00 -05:00
|
|
|
</dependency>
|
2013-06-21 04:41:35 -04:00
|
|
|
|
2012-02-01 10:59:00 -05:00
|
|
|
<!-- JSTL Api -->
|
2012-01-31 17:04:38 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp.jstl</artifactId>
|
|
|
|
</dependency>
|
2012-02-01 10:59:00 -05:00
|
|
|
<!-- JSTL Impl -->
|
2012-01-31 17:04:38 -05:00
|
|
|
<dependency>
|
2014-01-16 22:36:08 -05:00
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp.jstl</artifactId>
|
2012-01-31 17:04:38 -05:00
|
|
|
</dependency>
|
2013-06-21 04:41:35 -04:00
|
|
|
|
2012-02-01 10:59:00 -05:00
|
|
|
<!-- EL Api -->
|
2013-07-11 23:20:26 -04:00
|
|
|
<!-- Not needed as glassfish impl jars contain also the api classes
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.el</groupId>
|
|
|
|
<artifactId>javax.el-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
-->
|
2013-06-21 04:41:35 -04:00
|
|
|
|
|
|
|
<!-- EL Impl -->
|
2013-05-09 03:17:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
<artifactId>javax.el</artifactId>
|
|
|
|
</dependency>
|
2013-06-21 04:41:35 -04:00
|
|
|
|
|
|
|
|
2012-02-01 10:59:00 -05:00
|
|
|
<!-- Eclipse Java Compiler (for JSP Compilation) -->
|
2012-01-31 17:04:38 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>org.eclipse.jdt.core</artifactId>
|
2013-04-15 03:44:35 -04:00
|
|
|
</dependency>
|
2012-02-01 10:59:00 -05:00
|
|
|
</dependencies>
|
2012-01-31 17:04:38 -05:00
|
|
|
</project>
|