Last modified by David Avendasora on 2009/03/30 14:20

From version 28.1
edited by David Avendasora
on 2008/07/17 07:55
Change comment: There is no comment for this version
To version 32.1
edited by David Avendasora
on 2008/07/01 16:51
Change comment: There is no comment for this version

Summary

Details

Page properties
Title
... ... @@ -1,1 +1,1 @@
1 -Java Client-WebStart Distribution Building
1 +Java Client-Building
Content
... ... @@ -30,18 +30,3 @@
30 30  {{code}}
31 31  <target name="install" depends="setProps,init.install,build.woapp,javaclient,ssdd,war" />
32 32  {{/code}}
33 -
34 -1. If you are using any Frameworks that have client-side jars then you'll need to copy those jars over to the WebServerResources/Java directory as well. Because I don't want to go modifying any of the woproject files, I just copy the client-side jars of all my Local frameworks (Library/Frameworks/) into my app. Ideally it would only copy over the ones for the frameworks actually in the build path, but this works for now. I'll re-address it after the upcoming classpath changes to be rolled into WOLips.
35 -
36 -{{code}}
37 -
38 -<!-- the Java Client Client-Side Classes -->
39 -<copy todir="${dest.dir}/${project.name}/WEB-INF/${project.name}.woa/Contents/WebServerResources/Java">
40 - <fileset dir="${wo.wolocalroot}/Library/Frameworks">
41 - <include name="**/WebServerResources/Java/*.jar"/>
42 - </fileset>
43 - <mapper type="flatten"/>
44 -</copy>
45 -
46 -
47 -{{/code}}