Skip to content

Commit 98489af

Browse files
authored
Merge pull request #452 from seratch/openjdk11-bug
Add a workaround for OpenJDK 11's bug
2 parents b6ae5f6 + b80039f commit 98489af

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ matrix:
1313
# LTS version
1414
- jdk: openjdk11
1515
env: CODECOV="false"
16+
env: MAVEN_OPTS=-Djdk.tls.client.protocols=TLSv1.2
1617
script: travis_retry ./scripts/run_no_prep_tests.sh
1718
# non-LTS but latest
1819
- jdk: openjdk14

scripts/run_no_prep_tests.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
2-
./mvnw clean \
2+
./mvnw ${MAVEN_OPTS} \
3+
clean \
34
test-compile \
45
'-Dtest=test_locally.**.*Test' test \
56
-DfailIfNoTests=false \

0 commit comments

Comments
 (0)