Skip to content

Commit

Permalink
fix maven build for jetty 9
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeis committed Oct 1, 2015
1 parent 6ffdbc6 commit ea71530
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ rb/.yardoc
maven/*/src
maven/target
maven/*/target
maven/.idea
maven/*.iml
maven/*/*.iml
java/client/build/
java/client/log.txt
java/client/iedriver.log
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,17 +222,14 @@ public synchronized void reset() throws IOException {
throw new RuntimeException("not implemented");
}

@Override
public boolean isFinished() {
return false;
}

@Override
public boolean isReady() {
return true;
}

@Override
public void setReadListener(ReadListener readListener) {
throw new RuntimeException("setReadListener");
}
Expand Down
7 changes: 6 additions & 1 deletion maven/server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,12 @@
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
<artifactId>jetty-repacked</artifactId>
<version>7.6.1</version>
<version>9.2.13.v20150730</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
<dependency>
<groupId>org.seleniumhq.selenium</groupId>
Expand Down

0 comments on commit ea71530

Please sign in to comment.