Wiki source code of Add a Jar Dependency
Version 3.1 by Kieran Kelleher on 2007/10/02 11:28
Show last authors
author | version | line-number | content |
---|---|---|---|
1 | You'll often need to work with 3rd party Jars, as well as your own reusable code. | ||
2 | |||
3 | Adding these to your project is very simple. | ||
4 | |||
5 | 1. By default WOLips will create a ##Libraries## folder in your project directory. Populate this with any jars you like. | ||
6 | 1. In Eclipse, right-click (or ctrl-click) on the jar and choose ##Build Path > Add to Build Path##. This simple adjusts your project classpath but doesn't affect your final build. | ||
7 | 1. For frameworks, you should turn on the Export checkbox in the build path window as hown below in Fig. 1. Doing so ensures that other WebObjects projects the reference the framework "see" the jar library in their Eclipse build path. | ||
8 | 1. Adjust your ##build.xml## file to ensure that the jar is also embedded in ##Contents/Resources/Java## directory of the final build as below. | ||
9 | |||
10 | Either add an include entry for each jar... | ||
11 | |||
12 | {{noformat}} | ||
13 | |||
14 | <target name="build.woapp" depends="setProps,init.build,compile"> | ||
15 | <...> | ||
16 | <lib dir="Libraries"> | ||
17 | <include name="Add .jar's that should be copied in the woa."/> | ||
18 | <exclude name="**/*.woa/**"/> | ||
19 | </lib> | ||
20 | </woapplication> | ||
21 | </target> | ||
22 | |||
23 | {{/noformat}} | ||
24 | |||
25 | ... or have a single ##<include name="**/**.jar"/>## to include all jars in the specified directory. | ||
26 | |||
27 | {{info title="Fig. 1 Export jars when in a framework"}} | ||
28 | |||
29 | !Picture 11.jpg! | ||
30 | |||
31 | {{/info}} |