Author: stain
Date: Wed Sep 21 14:02:42 2016
New Revision: 1761744
URL: http://svn.apache.org/viewvc?rev=1761744&view=rev
Log:
BUILDING.txt for beanutils
Added:
commons/proper/beanutils/trunk/BUILDING.txt
Added: commons/proper/beanutils/trunk/BUILDING.txt
URL:
http://svn.apache.org/viewvc/commons/proper/beanutils/trunk/BUILDING.txt?rev=1761744&view=auto
==============================================================================
--- commons/proper/beanutils/trunk/BUILDING.txt (added)
+++ commons/proper/beanutils/trunk/BUILDING.txt Wed Sep 21 14:02:42 2016
@@ -0,0 +1,39 @@
+# 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
+(e.g. for https://commons.apache.org/proper/commons-beanutils/)
+
+ 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
+
+