-
Notifications
You must be signed in to change notification settings - Fork 212
/
BUILDING.txt
40 lines (20 loc) · 904 Bytes
/
BUILDING.txt
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
# Apache BeanUtils build instructions
Building BeanUtils requires:
- JDK 6/OpenJDK 6 or later (recommended: JDK 8)
http://www.oracle.com/technetwork/java/javase/downloads/
- Apache Maven 3 or later (recommended: Maven 3.3)
https://maven.apache.org/download.cgi
The compiled BeanUtils JAR should work with Java 6 or later.
To build target/commons-beanutils-*.jar
mvn clean package
or to install into your ~/.m2/repository
mvn clean install
You can skip the unit tests by adding the parameter
-DskipTests=true
To regenerate the web site (corresponding to the official
https://commons.apache.org/proper/commons-beanutils/ ) do
mvn clean site
Note: the Apache Commons BeanUtils site should include a japicmp report for the
purpose of checking API version compatibility, to enable this, use Java 7 or
later and run instead:
mvn clean package site -Pjapicmp