]> source.dussan.org Git - vaadin-framework.git/commitdiff
Steps towards publishing sources and javadoc jars (#9299)
authorArtur Signell <artur@vaadin.com>
Fri, 31 Aug 2012 12:27:01 +0000 (15:27 +0300)
committerArtur Signell <artur@vaadin.com>
Sun, 9 Sep 2012 08:23:06 +0000 (11:23 +0300)
buildhelpers/build.xml
buildhelpers/ivy.xml

index adf17f893253bcc381191e783947e24183c91693..80797415e535ee26ad8d2cac1d0b78e3e17e902b 100644 (file)
@@ -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>
 
index 767a6700664a08f50cde05c62b394e59793efad1..9d8055bb3f8d4278f23dbb162505f6a34ece88ca 100644 (file)
@@ -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 />