diff options
-rw-r--r-- | buildhelpers/build.xml | 6 | ||||
-rw-r--r-- | buildhelpers/ivy.xml | 16 |
2 files changed, 17 insertions, 5 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> diff --git a/buildhelpers/ivy.xml b/buildhelpers/ivy.xml index 767a670066..9d8055bb3f 100644 --- a/buildhelpers/ivy.xml +++ b/buildhelpers/ivy.xml @@ -1,11 +1,19 @@ <?xml version="1.0" encoding="UTF-8"?> <ivy-module version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" - xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd"> + xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd" + xmlns:m="http://ant.apache.org/ivy/maven"> <info organisation="com.vaadin" module="vaadin-buildhelpers" - revision="${vaadin.version}" /> - + revision="${vaadin.version}"> + <license name="Apache Software License 2.0" + url="http://www.apache.org/licenses/LICENSE-2.0" /> + <ivyauthor name="Vaadin Ltd" url="http://vaadin.com" /> + <description homepage="http://vaadin.com"> + Vaadin is a web application + framework for Rich Internet Applications (RIA). + </description> + </info> <configurations> <conf name="build" /> <conf name="build-provided" /> @@ -14,6 +22,8 @@ </configurations> <publications> <artifact type="jar" /> +<!-- <artifact type="source" ext="jar" m:classifier="sources" /> --> +<!-- <artifact type="javadoc" ext="jar" m:classifier="javadoc" /> --> </publications> <dependencies /> |