GUAC-879: Fix build on Maven 2 (state problematic transitive dependencies early so they aren't pulled from the faulty repository later).

This commit is contained in:
Michael Jumper
2014-10-11 00:50:52 -07:00
parent e26a4c3b7d
commit 5a9cb31971

View File

@@ -151,11 +151,23 @@
</dependency>
<!-- Jetty 9.0 servlet API (websocket) -->
<dependency>
<groupId>org.eclipse.jetty</groupId>
<artifactId>jetty-parent</artifactId>
<version>20</version>
<scope>provided</scope>
<type>pom</type>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-api</artifactId>
<version>9.0.7.v20131107</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.jetty.websocket</groupId>
<artifactId>websocket-servlet</artifactId>
<version>9.0.3.v20130506</version>
<scope>provided</scope>
<version>9.0.7.v20131107</version>
</dependency>
<!-- Tomcat servlet API (websocket) -->