Actions
Documentation » History » Revision 22
« Previous |
Revision 22/23
(diff)
| Next »
chin-yeh, 09/23/2011 09:54 AM
- Table of contents
- Documentation
Documentation¶
The main documentation for VP Client.
Programming Guide¶
Deployment Guide¶
List of Components¶
Name | Latest Stable Version | Description |
---|---|---|
vp-stub | 1.0-[version] | the client stub of the VP web services |
vp-client | 1.0.3-[version] | the client application of the VP web services |
vp-test | 1.0.3-SNAPSHOT | the demo application for vp-client |
vp-batch | HEAD tag | the batch program |
- SNAPSHOT - for development environment
- RELEASE - for production environment
Compile from source files¶
Important Note:
This section is not applicable to vp-batch as its deployment files have to be compiled individually and only upload those which are needed.
All of the projects are built and maintained using Maven 2.
Those projects can be imported into Eclipse IDE but the m2 Maven plugin is needed.
The source files are stored in:
Prerequisite:
- Eclipse IDE (optional)
- Apache Maven 2
- CVS client, e.g TortoiseCVS, Eclipse IDE
- Project or module name, e.g. vp-client
All of the project is configured to include development properties files when packaging the binary file. To include production properties files, activate the prod profile.
Steps:- checkout the project or module using the CVS client
cd
to the checkout folder, e.g. vp-client- Example:
$ cd vp-client
- Example:
- execute the maven goal, clean and package:
- compile for development environment:
- change the artifact version to x.x-SNAPSHOT
$ mvn clean package
- change the artifact version to x.x-SNAPSHOT
- compile for production environment:
- change the artifact version to x.x-RELEASE
$ mvn -P prod clean package
- change the artifact version to x.x-RELEASE
- compile for development environment:
- if success, the binary file can be found in the target folder
Updated by chin-yeh over 13 years ago · 22 revisions