summaryrefslogtreecommitdiffstats
path: root/buildhelpers
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-31 15:27:01 +0300
committerArtur Signell <artur@vaadin.com>2012-09-09 11:23:06 +0300
commit4156f77898416e1b5a7f0ef69823b2dda537bab2 (patch)
tree75b17f93cfed8263ee65cced8a1cc300bdd24c84 /buildhelpers
parentd8a5f96b36946ed315dcf48cc32701e0435bdfaa (diff)
downloadvaadin-framework-4156f77898416e1b5a7f0ef69823b2dda537bab2.tar.gz
vaadin-framework-4156f77898416e1b5a7f0ef69823b2dda537bab2.zip
Steps towards publishing sources and javadoc jars (#9299)
Diffstat (limited to 'buildhelpers')
-rw-r--r--buildhelpers/build.xml6
-rw-r--r--buildhelpers/ivy.xml16
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 />