Browse Source

Include GWT sources in sources jar (#9102)

Change-Id: I99928a614cf220b79f107e45eb02dc3de8333db1
tags/7.0.1
Artur Signell 11 years ago
parent
commit
0ece55d000
7 changed files with 22 additions and 6 deletions
  1. 3
    1
      buildhelpers/build.xml
  2. 3
    1
      client-compiler/build.xml
  3. 3
    1
      client/build.xml
  4. 4
    0
      common.xml
  5. 3
    1
      server/build.xml
  6. 3
    1
      shared/build.xml
  7. 3
    1
      theme-compiler/build.xml

+ 3
- 1
buildhelpers/build.xml View File

@@ -19,7 +19,9 @@
</target>

<target name="publish-local" depends="jar">
<antcall target="common.sources.jar" />
<antcall target="common.sources.jar">
<reference torefid="extra.jar.includes" refid="empty.reference" />
</antcall>
<antcall target="common.javadoc.jar" />
<antcall target="common.publish-local" />
</target>

+ 3
- 1
client-compiler/build.xml View File

@@ -42,7 +42,9 @@ gwt.svnrev=${git.revision}</echo>
</target>

<target name="publish-local" depends="jar">
<antcall target="common.sources.jar" />
<antcall target="common.sources.jar">
<reference torefid="extra.jar.includes" refid="compiler.includes" />
</antcall>
<antcall target="common.javadoc.jar" />

<antcall target="common.publish-local" />

+ 3
- 1
client/build.xml View File

@@ -51,7 +51,9 @@
</target>

<target name="publish-local" depends="jar">
<antcall target="common.sources.jar" />
<antcall target="common.sources.jar">
<reference torefid="extra.jar.includes" refid="client.gwt.includes" />
</antcall>
<antcall target="common.javadoc.jar" />

<antcall target="common.publish-local" />

+ 4
- 0
common.xml View File

@@ -122,6 +122,10 @@
</patternset>
</fileset>
<fileset refid="common.files.for.all.jars" />
<restrict>
<union refid="extra.jar.includes" />
<name name="*.java" />
</restrict>
</jar>

</target>

+ 3
- 1
server/build.xml View File

@@ -33,7 +33,9 @@
</target>

<target name="publish-local" depends="jar">
<antcall target="common.sources.jar" />
<antcall target="common.sources.jar">
<reference torefid="extra.jar.includes" refid="server.gwt.includes" />
</antcall>
<antcall target="common.javadoc.jar" />

<antcall target="common.publish-local" />

+ 3
- 1
shared/build.xml View File

@@ -38,7 +38,9 @@
</target>

<target name="publish-local" depends="jar">
<antcall target="common.sources.jar" />
<antcall target="common.sources.jar">
<reference torefid="extra.jar.includes" refid="shared.gwt.includes" />
</antcall>
<antcall target="common.javadoc.jar" />

<antcall target="common.publish-local" />

+ 3
- 1
theme-compiler/build.xml View File

@@ -33,7 +33,9 @@
</antcall>
</target>
<target name="publish-local" depends="jar">
<antcall target="common.sources.jar" />
<antcall target="common.sources.jar">
<reference torefid="extra.jar.includes" refid="empty.reference" />
</antcall>
<antcall target="common.javadoc.jar" />

<antcall target="common.publish-local" />

Loading…
Cancel
Save