File: BUILDING.txt

package info (click to toggle)
apache-mime4j 0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,108 kB
  • ctags: 2,466
  • sloc: java: 17,094; xml: 2,119; makefile: 24
file content (44 lines) | stat: -rw-r--r-- 1,036 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
Building Apache Mime4j 
======================

(1) Requisites
--------------
Mime4j utilizes Maven 2 as a distribution management and packaging tool. Version 2.0.7 
or above is recommended. 

JDK 1.5 or above is required in order to compile Mime4j.

Maven installation and configuration instructions can be found here:

http://maven.apache.org/run-maven/index.html

(2) Executing test cases

Execute the following command in order to compile and test the components:

mvn test

(3) Building packages 

Execute the following command in order to build JAR and assembly packages:

mvn package

One can also utilize the 'local' profile to build JAR and assembly packages
in the off-line mode:

mvn -Plocal package

Redistributables will be placed in the target folder. 

(4) Building documentation 

Execute the following command in order to generate javadoc:

mvn javadoc:javadoc

(5) Building project web site 

Execute the following command in order to generate the project web site:

mvn site