diff options
author | Build Agent <build@vaadin.com> | 2014-03-10 08:27:54 +0200 |
---|---|---|
committer | Build Agent <build@vaadin.com> | 2014-03-10 08:27:54 +0200 |
commit | d05c628d6162dbaff32e5f779fac5b36171c6028 (patch) | |
tree | 6f32b0ce2e4d47e91c97532d79931466ba763564 /common.xml | |
parent | 876672ed5781ab8e6778faf43e5b0de331fa54f6 (diff) | |
parent | 1e22aaf4df18413e537731f6b2bac249022cb72e (diff) | |
download | vaadin-framework-d05c628d6162dbaff32e5f779fac5b36171c6028.tar.gz vaadin-framework-d05c628d6162dbaff32e5f779fac5b36171c6028.zip |
Merge changes from origin/7.1
dd5698f Revert "Fix displaced TabSheet caption icon in Chrome"
2d8ec53 Fix TabSheet caption icon alignment on Chrome and Safari (#13077)
1e22aaf Added nojavadoc parameter, test-server, test-tb2, test-tb3 targets.
Change-Id: Ibc8421d3e3c037c01f31e168ce79baf20ef61684
Diffstat (limited to 'common.xml')
-rw-r--r-- | common.xml | 50 |
1 files changed, 33 insertions, 17 deletions
diff --git a/common.xml b/common.xml index a49c25c6be..cef335035d 100644 --- a/common.xml +++ b/common.xml @@ -152,28 +152,44 @@ </target> <target name="javadoc.jar" depends="dependencies, filter.webcontent"> - <fail unless="result.dir" message="No result.dir parameter given" /> + <fail unless="result.dir" message="No result.dir parameter given" /> <fail unless="module.name" message="No module.name parameter given" /> <property name="src" location="{$result.dir}/../src" /> <property name="javadoc.dir" value="${result.dir}/javadoc" /> <property name="javadoc.jar" location="${result.dir}/lib/${module.name}-${vaadin.version}-javadoc.jar" /> - <javadoc destdir="${javadoc.dir}" author="true" version="true" use="true" windowtitle="${module.name}"> - <packageset dir="${src}" excludes="${classes.exclude}" /> - <doctitle><h1>${module.name}</h1></doctitle> - <!-- <header><![CDATA[<script type="text/javascript" src=".html-style/style.js"></script>]]></header> --> - <bottom>${javadoc.bottom}</bottom> - <link offline="true" href="http://docs.oracle.com/javase/6/docs/api/" packagelistLoc="build/javadoc/j2se-1.6.0" /> - <link offline="true" href="http://java.sun.com/j2ee/1.4/docs/api/" packagelistLoc="build/javadoc/j2ee-1.4" /> - <classpath refid="classpath.compile.dependencies" /> - </javadoc> - - <!-- Create a javadoc jar --> - <jar file="${javadoc.jar}" compress="true"> - <fileset dir="${javadoc.dir}" /> - <fileset refid="common.files.for.all.jars" /> - </jar> - + <antcontrib:if> + <!-- + Most straight forward way to skip javadocs is to provide + an empty javadoc.jar. Ivy publish won't allow leaving the file + out without using conf attribute. Using conf would make internal + dependency resolution unnecessary complicated. + --> + <isset property="nojavadoc" /> + <then> + <jar file="${javadoc.jar}" compress="true"> + <fileset refid="common.files.for.all.jars" /> + </jar> + </then> + <else> + <javadoc destdir="${javadoc.dir}" author="true" version="true" use="true" windowtitle="${module.name}"> + <packageset dir="${src}" excludes="${classes.exclude}" /> + + <doctitle><h1>${module.name}</h1></doctitle> + <!-- <header><![CDATA[<script type="text/javascript" src=".html-style/style.js"></script>]]></header> --> + <bottom>${javadoc.bottom}</bottom> + <link offline="true" href="http://docs.oracle.com/javase/6/docs/api/" packagelistLoc="build/javadoc/j2se-1.6.0" /> + <link offline="true" href="http://java.sun.com/j2ee/1.4/docs/api/" packagelistLoc="build/javadoc/j2ee-1.4" /> + <classpath refid="classpath.compile.dependencies" /> + </javadoc> + + <!-- Create a javadoc jar --> + <jar file="${javadoc.jar}" compress="true"> + <fileset dir="${javadoc.dir}" /> + <fileset refid="common.files.for.all.jars" /> + </jar> + </else> + </antcontrib:if> </target> <target name="jar" depends="compile, pom.xml, filter.webcontent"> |