Project

General

Profile

Specification » History » Version 3

chin-yeh, 10/20/2010 03:08 PM

1 2 chin-yeh
{{toc}}
2
3 1 chin-yeh
h1. Specification
4
5
The chosen integration method is *HTML Link Method*. By using this method, the customer(consumer) enters her/his credit card information through MAXCONNECT's payment form. Once the payment is processed by MAXCONNECT, the customer will be redirected back to merchant site either through <code>Kick System</code> or <code>Return Button</code>.
6 2 chin-yeh
7
h2. Java Package Name
8
9
The package name is 
10
<pre>my.com.ecosway.maxconnect</pre>
11
12
h3. Required libraries
13
14
List of the required libraries:
15
* 1
16
* 2
17 3 chin-yeh
18
h2. How to build JAR
19
20
This project uses <code>ANT</code> tool to build the JAR. You can use <code>Eclipse</code> or <code>ANT</code> to run the ant script. The following guide executes the ant script using ANT.
21
22
h3. For Production
23
24
<pre>
25
ant script: build.xml
26
target name: package
27
</pre>
28
29
# Checkout the project from [[Wiki#SCM|Source repository]]
30
# <code>cd</code> to the checkout-ed folder and executes:
31
<pre>
32
# ant package
33
</pre>
34
35
h3. For Development
36
37
<pre>
38
ant script: build.xml
39
target name: package-dev
40
</pre>
41
42
# Checkout the project from [[Wiki#SCM|Source repository]]
43
# <code>cd</code> to the checkout-ed folder and executes:
44
<pre>
45
# ant package-dev
46
</pre>