diff options
author | Artur Signell <artur@vaadin.com> | 2012-08-31 15:27:01 +0300 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2012-09-09 11:23:06 +0300 |
commit | 4156f77898416e1b5a7f0ef69823b2dda537bab2 (patch) | |
tree | 75b17f93cfed8263ee65cced8a1cc300bdd24c84 /buildhelpers/build.xml | |
parent | d8a5f96b36946ed315dcf48cc32701e0435bdfaa (diff) | |
download | vaadin-framework-4156f77898416e1b5a7f0ef69823b2dda537bab2.tar.gz vaadin-framework-4156f77898416e1b5a7f0ef69823b2dda537bab2.zip |
Steps towards publishing sources and javadoc jars (#9299)
Diffstat (limited to 'buildhelpers/build.xml')
-rw-r--r-- | buildhelpers/build.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/buildhelpers/build.xml b/buildhelpers/build.xml index adf17f8932..80797415e5 100644 --- a/buildhelpers/build.xml +++ b/buildhelpers/build.xml @@ -1,6 +1,6 @@ <?xml version="1.0"?> -<project name="vaadin-buildhelpers" basedir="." default="publish"> +<project name="vaadin-buildhelpers" basedir="." default="publish-local"> <description> Compiles build helpers used when building other modules. </description> @@ -17,7 +17,9 @@ </antcall> </target> - <target name="publish" depends="jar"> + <target name="publish-local" depends="jar"> + <antcall target="common.sources.jar" /> + <antcall target="common.javadoc.jar" /> <antcall target="common.publish-local" /> </target> |