diff options
author | Reinier Zwitserloot <reinier@zwitserloot.com> | 2017-09-11 21:25:05 +0200 |
---|---|---|
committer | Reinier Zwitserloot <reinier@zwitserloot.com> | 2017-10-26 00:07:18 +0200 |
commit | 6fc0cd736c5def296ec7c963ba6e6ec5032d08c9 (patch) | |
tree | 04060fc487fb81e6382e492a728d9fd25e7fc9ae /build.xml | |
parent | 033660088bc9f184de7afb512fa752c4ccc70f83 (diff) | |
download | lombok-6fc0cd736c5def296ec7c963ba6e6ec5032d08c9.tar.gz lombok-6fc0cd736c5def296ec7c963ba6e6ec5032d08c9.tar.bz2 lombok-6fc0cd736c5def296ec7c963ba6e6ec5032d08c9.zip |
website-only now available.
Diffstat (limited to 'build.xml')
-rw-r--r-- | build.xml | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -775,6 +775,10 @@ You can also create your own by writing a 'testenvironment.properties' file. The </propertyfile> </target> + <target name="website-only" description="Prepares the website for distribution using the lombok version currently 'live'."> + <ant antfile="buildScripts/website.ant.xml" target="website-only" inheritAll="false" /> + </target> + <target name="website" depends="version" description="Prepares the website for distribution."> <ant antfile="buildScripts/website.ant.xml" target="website" inheritAll="false"> <property name="lombok.version" value="${lombok.version}" /> @@ -782,6 +786,14 @@ You can also create your own by writing a 'testenvironment.properties' file. The </ant> </target> + <target name="website-only-publish" depends="config-ssh, clean" + description="Prepares the website (using lombok version current 'live') for distribution and then publishes it to projectlombok.org."> + <ant antfile="buildScripts/website.ant.xml" target="website-only-publish" inheritAll="false"> + <property name="ssh.username" value="${ssh.username}" /> + <property name="ssh.keyfile" value="${ssh.keyfile}" /> + </ant> + </target> + <target name="website-publish" depends="config-ssh, clean, version" description="Prepares the website for distribution and then publishes it to projectlombok.org."> <ant antfile="buildScripts/website.ant.xml" target="website-publish" inheritAll="false"> |