aboutsummaryrefslogtreecommitdiffstats
path: root/build.xml
diff options
context:
space:
mode:
authorJaven O'Neal <onealj@apache.org>2017-02-02 00:48:03 +0000
committerJaven O'Neal <onealj@apache.org>2017-02-02 00:48:03 +0000
commit62e584e6560e30e15291ab45c7ddbb1bbd5d944d (patch)
treeead693ae53fb3a876c0227ba15b1fd659b89d776 /build.xml
parentd67dd7f104c0902b504121f16a39e571a07dd576 (diff)
downloadpoi-62e584e6560e30e15291ab45c7ddbb1bbd5d944d.tar.gz
poi-62e584e6560e30e15291ab45c7ddbb1bbd5d944d.zip
run release-prep0 with https URLs. This worked for kiwiwings.
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1781337 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build.xml')
-rw-r--r--build.xml8
1 files changed, 3 insertions, 5 deletions
diff --git a/build.xml b/build.xml
index bf79452938..7a65ff2d58 100644
--- a/build.xml
+++ b/build.xml
@@ -2443,18 +2443,16 @@ under the License.
<target name="release-prep0" depends="-init-svn" description="check to make sure the release tag doesn't exist yet">
<!-- verify that svn username/password are valid ... -->
- <fail message="Unable to connect to SVN repo. Verify apache-id username and password.">
+ <fail message="Unable to connect to SVN repo. Verify apache-id username and password. If these are correct, change the release-prep0 target to check over http, which would indicate a problem with your https setup.">
<condition>
- <!-- FIXME: svnExists doesn't work with https here. -->
- <not><svnExists refid="svn.settings" target="http://svn.apache.org/repos/asf/poi/"/></not>
+ <not><svnExists refid="svn.settings" target="https://svn.apache.org/repos/asf/poi/"/></not>
</condition>
</fail>
<!-- verify that the release tag that we're about to create in release-prep1 does not already exist (no overwriting tags!) -->
<fail message="Cannot create release tag. https://svn.apache.org/repos/asf/poi/tags/${RELEASE_TAG} already exists. Verify the requested release version (${version.id}).">
<condition>
- <!-- FIXME: svnExists doesn't work with https here. -->
- <svnExists refid="svn.settings" target="http://svn.apache.org/repos/asf/poi/tags/${RELEASE_TAG}/"/>
+ <svnExists refid="svn.settings" target="https://svn.apache.org/repos/asf/poi/tags/${RELEASE_TAG}/"/>
</condition>
</fail>
</target>