diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2016-04-27 22:17:17 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2016-04-27 22:17:17 +0000 |
commit | 12aa832839189e74bc60fcf4bb46858a20d7699b (patch) | |
tree | fc90b4bb9e7cab77232988b49311cfbb84d1a796 /build.xml | |
parent | 9fa0c96a6354a7e9f65b245ca530fcbfd3e526e5 (diff) | |
download | poi-12aa832839189e74bc60fcf4bb46858a20d7699b.tar.gz poi-12aa832839189e74bc60fcf4bb46858a20d7699b.zip |
comment out https check for jdk1.6
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1741352 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -482,7 +482,7 @@ under the License. <sequential> <local name="exists"/> <available file="@{dest}" property="exists"/> - <fail unless:true="${exists}" + <!--fail unless:true="${exists}" message="Java version might be uncapable to download https URLs - see https://stackoverflow.com/questions/6851461/java-why-does-ssl-handshake-give-could-not-generate-dh-keypair-exception"> <condition> <and> @@ -490,7 +490,7 @@ under the License. <contains string="@{src}" substring="https"/> </and> </condition> - </fail> + </fail--> <get src="@{src}" dest="@{dest}" unless:true="${exists}"/> </sequential> </macrodef> |