Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

Commit

Permalink
Updated compile level to Java 7 and Selenium to the newest version. T…
Browse files Browse the repository at this point in the history
…his is done because with v1.1.0 WebTester will no longer support Java 6 (like Selenium has dropped the support with v2.47.0)
  • Loading branch information
slu-it committed Nov 16, 2015
1 parent 38daba0 commit 49d5831
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@

<properties>

<java.version>1.6</java.version>
<java.version>1.7</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>

Expand All @@ -69,8 +69,7 @@
<version.mockito>1.10.19</version.mockito>
<version.checkstyle>6.9</version.checkstyle>

<!-- higher selenium versions require java 7! -->
<version.selenium>2.46.0</version.selenium>
<version.selenium>2.48.2</version.selenium>

<version.slf4j>1.7.12</version.slf4j>
<version.logback>1.1.3</version.logback>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ public class Either<T> implements Predicate<T> {

private List<Predicate<T>> predicates;

@SafeVarargs
public Either(Predicate<T>... predicates) {
this.predicates = Arrays.asList(predicates);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@
* </ol>
* <p>
* <b>Exaple test class:</b>
* <p>
* <pre>
* <code>
* public class FooTest {
Expand Down

0 comments on commit 49d5831

Please sign in to comment.