Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 5edb5f3e26b5a4773380c76eb9fd62173c62310d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<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>
    <version>8.1.20-SNAPSHOT</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>jetty-jsp</artifactId>
  <name>Jetty :: JSP dependencies</name>
  <url>http://www.eclipse.org/jetty</url>
  <packaging>jar</packaging>
  <build>
  </build>

  <dependencies>
    <!-- JSP Api -->
    <dependency>
      <groupId>org.eclipse.jetty.orbit</groupId>
      <artifactId>javax.servlet.jsp</artifactId>
      <version>2.2.0.v201112011158</version>
    </dependency>
    <!-- JSP Impl -->
    <dependency>
       <groupId>org.eclipse.jetty.orbit</groupId>
       <artifactId>org.apache.jasper.glassfish</artifactId>
       <version>2.2.2.v201112011158</version>
    </dependency>
    <!-- JSTL Api -->
    <dependency>
       <groupId>org.eclipse.jetty.orbit</groupId>
       <artifactId>javax.servlet.jsp.jstl</artifactId>
       <version>1.2.0.v201105211821</version>
    </dependency>
    <!-- JSTL Impl -->
    <dependency>
       <groupId>org.eclipse.jetty.orbit</groupId>
       <artifactId>org.apache.taglibs.standard.glassfish</artifactId>
       <version>1.2.0.v201112081803</version>
    </dependency>
    <!-- EL Api -->
    <dependency>
      <groupId>org.eclipse.jetty.orbit</groupId>
      <artifactId>javax.el</artifactId>
      <version>2.2.0.v201108011116</version>
    </dependency>
    <!-- EL Impl -->
    <dependency>
      <groupId>org.eclipse.jetty.orbit</groupId>
      <artifactId>com.sun.el</artifactId>
      <version>2.2.0.v201108011116</version>
    </dependency>
    <!-- Eclipse Java Compiler (for JSP Compilation) -->
    <dependency>
      <groupId>org.eclipse.jetty.orbit</groupId>
      <artifactId>org.eclipse.jdt.core</artifactId>
      <version>3.7.1</version>
    </dependency>
  </dependencies>
</project>

Back to the top