Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-dev] Jasper source location?

In the jetty  pom.xml file for what ever release you are using, you
will see a property set like:

    <jsp21-version>9.1.1.B60.25.p0</jsp21-version>

That is the version number of the jasper we are using.

We build this ourselves in a project at
  https://svn.codehaus.org/jetty/jsp/trunk

So you can checkout and build that project and it will fetch the
source for you etc.


This is where it gets the source from:

  <properties>
    <glassfish-tag-version>SJSAS-9_1_1-B60F-07_Jan_2009</glassfish-tag-version>
  </properties>
  <repositories>
    <repository>
      <id>dev.java.net</id>
      <name>Glassfish Repository</name>
      <layout>legacy</layout>
      <url>http://download.java.net/maven/1</url>
      <snapshots><enabled>false</enabled></snapshots>
    </repository>
  </repositories>

cheers




Back to the top