Changeset 1697


Ignore:
Timestamp:
2010-09-01 11:50:13 (3 years ago)
Author:
bruno
Message:

Use a newer (org.eclipse.)Jetty version than the one supplied with Restlet, which has problems with logging (e.g. uncatched Error's occuring on requests threads were nowhere visible, even with debug logging enabled).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/core/kauri-runtime/pom.xml

    r1684 r1697  
    7373      <groupId>org.restlet.jse</groupId> 
    7474      <artifactId>org.restlet.ext.jetty</artifactId> 
     75      <exclusions> 
     76        <exclusion> 
     77          <groupId>org.eclipse.jetty</groupId> 
     78          <artifactId>jetty-ajp</artifactId> 
     79        </exclusion> 
     80        <exclusion> 
     81          <groupId>org.eclipse.jetty</groupId> 
     82          <artifactId>jetty-continuation</artifactId> 
     83        </exclusion> 
     84        <exclusion> 
     85          <groupId>org.eclipse.jetty</groupId> 
     86          <artifactId>jetty-http</artifactId> 
     87        </exclusion> 
     88        <exclusion> 
     89          <groupId>org.eclipse.jetty</groupId> 
     90          <artifactId>jetty-io</artifactId> 
     91        </exclusion> 
     92        <exclusion> 
     93          <groupId>org.eclipse.jetty</groupId> 
     94          <artifactId>jetty-server</artifactId> 
     95        </exclusion> 
     96        <exclusion> 
     97          <groupId>org.eclipse.jetty</groupId> 
     98          <artifactId>jetty-util</artifactId> 
     99        </exclusion> 
     100      </exclusions> 
     101    </dependency> 
     102 
     103    <!-- Use a newer Jetty with Restlet --> 
     104    <dependency> 
     105      <groupId>org.eclipse.jetty</groupId> 
     106      <artifactId>jetty-ajp</artifactId> 
     107      <version>7.1.6.v20100715</version> 
     108    </dependency> 
     109    <dependency> 
     110      <groupId>org.eclipse.jetty</groupId> 
     111      <artifactId>jetty-continuation</artifactId> 
     112      <version>7.1.6.v20100715</version> 
     113    </dependency> 
     114    <dependency> 
     115      <groupId>org.eclipse.jetty</groupId> 
     116      <artifactId>jetty-http</artifactId> 
     117      <version>7.1.6.v20100715</version> 
     118    </dependency> 
     119    <dependency> 
     120      <groupId>org.eclipse.jetty</groupId> 
     121      <artifactId>jetty-io</artifactId> 
     122      <version>7.1.6.v20100715</version> 
     123    </dependency> 
     124    <dependency> 
     125      <groupId>org.eclipse.jetty</groupId> 
     126      <artifactId>jetty-server</artifactId> 
     127      <version>7.1.6.v20100715</version> 
     128    </dependency> 
     129    <dependency> 
     130      <groupId>org.eclipse.jetty</groupId> 
     131      <artifactId>jetty-util</artifactId> 
     132      <version>7.1.6.v20100715</version> 
    75133    </dependency> 
    76134    <dependency> 
Note: See TracChangeset for help on using the changeset viewer.