diff options
-rw-r--r-- | build.properties | 5 | ||||
-rw-r--r-- | client-compiled/build.xml | 7 |
2 files changed, 10 insertions, 2 deletions
diff --git a/build.properties b/build.properties index 0a4f894b4b..f5682be0a0 100644 --- a/build.properties +++ b/build.properties @@ -3,6 +3,7 @@ javadoc.bottom=<i>Copyright © 2000-2011 Vaadin Ltd. All Rights Reserved.</i ivy.organisation=com.vaadin vaadin.vendor=Vaadin Ltd vaadin.java.version=1.6 -vaadin.version=0.0.0.noversion - +vaadin.version=0.0.0.unversioned-development-build +# repository into which Maven snapshots should be published +snapshot.repository.url=http://oss.sonatype.org/content/repositories/vaadin-snapshots diff --git a/client-compiled/build.xml b/client-compiled/build.xml index 6533ce2744..2f0c2f6e9c 100644 --- a/client-compiled/build.xml +++ b/client-compiled/build.xml @@ -106,6 +106,13 @@ </antcall> <jar file="${compiled.jar}" compress="true"> + <manifest> + <attribute name="Vaadin-Package-Version" value="1" /> + <attribute name="Vaadin-Widgetsets" value="com.vaadin.DefaultWidgetSet" /> + <attribute name="Implementation-Vendor" value="Vaadin Ltd" /> + <attribute name="Implementation-URL" value="http://vaadin.com" /> + <attribute name="Implementation-Version" value="${vaadin.version}" /> + </manifest> <fileset dir="${result.dir}"> <include name="VAADIN/widgetsets/com.vaadin*/**" /> <include name="pom.xml" /> |