summaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorAndreas Beeker <kiwiwings@apache.org>2016-04-27 22:17:17 +0000
committerAndreas Beeker <kiwiwings@apache.org>2016-04-27 22:17:17 +0000
commit12aa832839189e74bc60fcf4bb46858a20d7699b (patch)
treefc90b4bb9e7cab77232988b49311cfbb84d1a796 /build.xml
parent9fa0c96a6354a7e9f65b245ca530fcbfd3e526e5 (diff)
downloadpoi-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.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.xml b/build.xml
index e7e79aade6..dc88b72c52 100644
--- a/build.xml
+++ b/build.xml
@@ -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>