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