Browse Source

Moved Vaadin-Widgetsets to client package where it belongs (#9593)

tags/7.0.0.beta1
Artur Signell 11 years ago
parent
commit
47638e7f5c
2 changed files with 7 additions and 2 deletions
  1. 0
    2
      client-compiled/build.xml
  2. 7
    0
      client/build.xml

+ 0
- 2
client-compiled/build.xml View File

@@ -106,8 +106,6 @@

<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}" />

+ 7
- 0
client/build.xml View File

@@ -22,9 +22,16 @@
<path id="classpath.tests.custom" />

<target name="jar">
<property name="jar.file" location="${result.dir}/lib/${module.name}-${vaadin.version}.jar" />
<antcall target="common.jar">
<reference refid="client.gwt.includes" torefid="extra.jar.includes" />
</antcall>
<jar destfile="${jar.file}" update="true">
<manifest>
<attribute name="Vaadin-Package-Version" value="1" />
<attribute name="Vaadin-Widgetsets" value="com.vaadin.DefaultWidgetSet" />
</manifest>
</jar>
<!-- Hack to add validation dependency with source classifier -->
<property name="pom.xml" location="${result.dir}/lib/${module.name}-${vaadin.version}.pom" />
<copy file="${pom.xml}" tofile="${temp.pom}">

Loading…
Cancel
Save