2012-01-31 16:04:38 -06: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>
|
2015-02-24 10:38:33 -06:00
|
|
|
<version>9.2.10-SNAPSHOT</version>
|
2012-01-31 16:04:38 -06:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>jetty-jsp</artifactId>
|
2014-10-09 15:11:46 -07:00
|
|
|
<name>Jetty :: Glassfish JSP Implementation</name>
|
2013-05-21 13:10:07 -05:00
|
|
|
<url>http://www.eclipse.org/jetty</url>
|
2012-02-01 19:17:42 +11:00
|
|
|
<packaging>jar</packaging>
|
2012-01-31 16:04:38 -06:00
|
|
|
<build>
|
2013-08-22 14:52:02 -07: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 16:04:38 -06:00
|
|
|
</build>
|
|
|
|
|
2012-02-01 08:59:00 -07:00
|
|
|
<dependencies>
|
2014-11-26 15:35:30 +11: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-12 13:20:26 +10: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 08:59:00 -07:00
|
|
|
<!-- JSP Api -->
|
2013-05-09 17:17:46 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.servlet.jsp</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp-api</artifactId>
|
|
|
|
</dependency>
|
2012-02-01 08:59:00 -07:00
|
|
|
<!-- JSP Impl -->
|
2013-05-09 17:17:46 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp</artifactId>
|
2012-02-01 08:59:00 -07:00
|
|
|
</dependency>
|
2013-06-21 18:41:35 +10:00
|
|
|
|
2012-02-01 08:59:00 -07:00
|
|
|
<!-- JSTL Api -->
|
2012-01-31 16:04:38 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp.jstl</artifactId>
|
|
|
|
</dependency>
|
2012-02-01 08:59:00 -07:00
|
|
|
<!-- JSTL Impl -->
|
2012-01-31 16:04:38 -06:00
|
|
|
<dependency>
|
2014-01-17 14:36:08 +11:00
|
|
|
<groupId>org.glassfish.web</groupId>
|
|
|
|
<artifactId>javax.servlet.jsp.jstl</artifactId>
|
2012-01-31 16:04:38 -06:00
|
|
|
</dependency>
|
2013-06-21 18:41:35 +10:00
|
|
|
|
2012-02-01 08:59:00 -07:00
|
|
|
<!-- EL Api -->
|
2013-07-12 13:20:26 +10: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 18:41:35 +10:00
|
|
|
|
|
|
|
<!-- EL Impl -->
|
2013-05-09 17:17:46 +10:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.glassfish</groupId>
|
|
|
|
<artifactId>javax.el</artifactId>
|
|
|
|
</dependency>
|
2013-06-21 18:41:35 +10:00
|
|
|
|
|
|
|
|
2012-02-01 08:59:00 -07:00
|
|
|
<!-- Eclipse Java Compiler (for JSP Compilation) -->
|
2012-01-31 16:04:38 -06:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.eclipse.jetty.orbit</groupId>
|
|
|
|
<artifactId>org.eclipse.jdt.core</artifactId>
|
2013-04-15 17:44:35 +10:00
|
|
|
</dependency>
|
2012-02-01 08:59:00 -07:00
|
|
|
</dependencies>
|
2012-01-31 16:04:38 -06:00
|
|
|
</project>
|