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

Commit

Permalink
[hotfix] Apply workaround for JDK.11 TLS issue
Browse files Browse the repository at this point in the history
Prevent "No PSK available" error while fetching
artifacts from maven repo on travis.
See https://bugs.openjdk.java.net/browse/JDK-8213202
  • Loading branch information
rkhachatryan committed May 29, 2020
1 parent b9a552b commit 5847efa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ install:
# files. The "mvn install" command will run by default during the "install"
# phase by Travis, without the profile flag. Here we customize the install
# phase to use the relevant profile.
- mvn install -P test -DskipTests=true -Dmaven.javadoc.skip=true -B -V
# https.protocols is a workaround for https://bugs.openjdk.java.net/browse/JDK-8213202
- mvn install -P test -DskipTests=true -Dmaven.javadoc.skip=true -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2 -B -V
script:
- mvn test -P test -B

0 comments on commit 5847efa

Please sign in to comment.