Skip to content

Commit

Permalink
Pin Undertow version to maintain Java 8 compatibility (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbaldassari committed Oct 12, 2023
1 parent 78e29de commit 2079846
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ implementation group: 'com.mabl', name: 'pac-interpreter', version: '1.+'
</dependency>
```

### Java

This library is compatible with Java 8 or newer.

## Quickstart

Please see the full documentation below this example for more information.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ dependencies {
// Test deps:
testImplementation group: 'junit', name: 'junit', version: '4.+'
testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: '1.3.+'
testImplementation group: 'io.undertow', name: 'undertow-core', version: '2.2.+'
testImplementation group: 'io.undertow', name: 'undertow-core', version: '2.2.26.Final'
}

java {
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/mabl/net/proxy/PacInterpreterTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ abstract public class PacInterpreterTest {

@Before
public void silenceGraalvmWarnings() {
System.setProperty("polyglot.engine.WarnInterpreterOnly", Boolean.TRUE.toString());
System.setProperty("polyglot.engine.WarnInterpreterOnly", Boolean.FALSE.toString());
}

@After
Expand Down

0 comments on commit 2079846

Please sign in to comment.