You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hivemall.apache.org by my...@apache.org on 2018/11/21 06:11:37 UTC

incubator-hivemall git commit: [DOC] Added workaround for a Surefire error

Repository: incubator-hivemall
Updated Branches:
  refs/heads/master 0efadc6d1 -> d8810deab


[DOC] Added workaround for a Surefire error


Project: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/commit/d8810dea
Tree: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/tree/d8810dea
Diff: http://git-wip-us.apache.org/repos/asf/incubator-hivemall/diff/d8810dea

Branch: refs/heads/master
Commit: d8810deab53b8772fba3d6e4a3699003ca427c23
Parents: 0efadc6
Author: Makoto Yui <my...@apache.org>
Authored: Wed Nov 21 15:11:29 2018 +0900
Committer: Makoto Yui <my...@apache.org>
Committed: Wed Nov 21 15:11:29 2018 +0900

----------------------------------------------------------------------
 src/site/markdown/verify_artifacts.md | 7 +++++++
 1 file changed, 7 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-hivemall/blob/d8810dea/src/site/markdown/verify_artifacts.md
----------------------------------------------------------------------
diff --git a/src/site/markdown/verify_artifacts.md b/src/site/markdown/verify_artifacts.md
index e78dfa1..19c2eb2 100644
--- a/src/site/markdown/verify_artifacts.md
+++ b/src/site/markdown/verify_artifacts.md
@@ -98,6 +98,13 @@ export JAVA8_HOME=`/usr/libexec/java_home -v 1.8`
 # Try to create artifacts
 export MAVEN_OPTS=-XX:MaxPermSize=256m
 
+# (Optional) Workaround for SSL error `Received fatal alert: protocol_version`
+export MAVEN_OPTS="$MAVEN_OPTS -Dhttps.protocols=TLSv1,TLSv1.1,TLSv1.2"
+
+# (Optional) Workaround for Surefire error:
+# Could not find or load main class org.apache.maven.surefire.booter.ForkedBooter
+export _JAVA_OPTIONS="-Djdk.net.URLClassPath.disableClassPathURLCheck=true"
+
 # Try to create artifacts
 # RAT license check and unit tests will be issued
 mvn -Papache-release clean install