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

From version 24.1
edited by David Avendasora
on 2008/07/01 16:52
Change comment: There is no comment for this version
To version 25.1
edited by David Avendasora
on 2008/07/17 07:59
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -30,3 +30,20 @@
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 +Add the following code to your build.xml file, right at the end of the ssdd target, but before all the classpath fixes.
37 +
38 +{{code}}
39 +
40 +<!-- the Java Client Client-Side Classes -->
41 +<copy todir="${dest.dir}/${project.name}/WEB-INF/${project.name}.woa/Contents/WebServerResources/Java">
42 + <fileset dir="${wo.wolocalroot}/Library/Frameworks">
43 + <include name="**/WebServerResources/Java/*.jar"/>
44 + </fileset>
45 + <mapper type="flatten"/>
46 +</copy>
47 +
48 +
49 +{{/code}}