Deployment Guide - connector-client-utils » History » Version 3
chin-yeh, 12/28/2011 02:52 PM
1 | 1 | chin-yeh | {{toc}} |
---|---|---|---|
2 | |||
3 | 2 | chin-yeh | h1. Deployment Guide - connector-client-utils |
4 | |||
5 | This guide describes how to deploy web app or standalone java program which depends on connector-client-utils. |
||
6 | 3 | chin-yeh | |
7 | _Steps:_ |
||
8 | # checkout the project [[wiki#connector-client-utils|connector-client-utils]] and import it into *Eclipse* workspace. |
||
9 | # after imported the project, make sure there's *no compilation error*. |
||
10 | # execute the ant target, *archive* in the *build.xml* script |
||
11 | # if no error, it will create a binary file called *connector-client-utils.jar* in the <code>dist</code> folder. |
||
12 | # upload the *connector-client-utils.jar* to: |
||
13 | ** web app: |
||
14 | <pre>WEB-INF/lib</pre> |
||
15 | ** standalone java program: |
||
16 | <pre>your program's library folder</pre> |
||
17 | # upload *all of the jar files* in <code>lib</code> folder to: |
||
18 | ** web app: |
||
19 | <pre>WEB-INF/lib</pre> |
||
20 | ** standalone java program: |
||
21 | <pre>your program's library folder</pre> |
||
22 | ** _if there's duplicate library, use the newer version_ |
||
23 | # done |