diff options
author | Artur Signell <artur@vaadin.com> | 2013-11-11 10:57:03 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2013-11-11 09:02:50 +0000 |
commit | 23815e62071d9a80fc4045fb5f1dbede6a0823c2 (patch) | |
tree | 2de45041871f17c5d86b1bc2e913aae56b5dbd31 /publish.xml | |
parent | 8efc38528e6eaf5496dea2db514d3ba9c6df190d (diff) | |
download | vaadin-framework-23815e62071d9a80fc4045fb5f1dbede6a0823c2.tar.gz vaadin-framework-23815e62071d9a80fc4045fb5f1dbede6a0823c2.zip |
Remove broken JSch check
The current check requires ANT_HOME/lib to contain jsch-0.1.48. There are
however other places, like .ant/lib where you can place the jar also.
Additionally the build agents in TeamCity seems to wipe ANT_HOME/lib
every now and then, which makes this a bad place to add extra jars.
Change-Id: I83b8e0612e72d422d4341fc68b1ab6a0c98848a5
Diffstat (limited to 'publish.xml')
-rw-r--r-- | publish.xml | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/publish.xml b/publish.xml index 4007f2db00..d37087d8f9 100644 --- a/publish.xml +++ b/publish.xml @@ -11,11 +11,6 @@ <ivy:settings file="ivysettings-publish.xml" id="publish.settings" /> <property file="publish.properties" /> - <available property="ant-jsch.present" file="${ant.home}/lib/ant-jsch.jar" /> - <available property="jsch.present" file="${ant.home}/lib/jsch-0.1.48.jar" /> - <fail unless="ant-jsch.present" message="Please install ant-jsch.jar into ANT_HOME/lib" /> - <fail unless="jsch.present" message="Please install jsch.jar into ANT_HOME/lib" /> - <target name="nightly.publish" depends="nightly.download.publish, nightly.maven.publish"> </target> |