Project

General

Profile

Wiki » History » Version 2

chin-yeh, 10/20/2010 10:35 AM

1 2 chin-yeh
{{toc}}
2
3 1 chin-yeh
h1. Wiki
4
5
This is the main Wiki for MAXCONNECT Integration project.
6
7
8
h2. SCM
9
10
The CVS repository:
11
<pre>
12
Host: cwyrnd2-server [IP address:192.168.2.11]
13
Repository path: d:/source/newZealand-mall
14
module: maxconnect
15 2 chin-yeh
</pre>
16
17
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 1 chin-yeh
</pre>