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

From version 22.1
edited by David Avendasora
on 2008/07/17 07:54
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
... ... @@ -33,15 +33,17 @@
33 33  
34 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 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 +
36 36  {{code}}
37 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>
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>
45 45  
46 46  
47 47  {{/code}}