diff options
author | Max Brazhnikov <makc@FreeBSD.org> | 2020-11-18 11:15:53 +0000 |
---|---|---|
committer | Max Brazhnikov <makc@FreeBSD.org> | 2020-11-18 11:15:53 +0000 |
commit | bfe7ac7a92c748d9a048f3552465093db9c77674 (patch) | |
tree | 1bddbd61bdbe5e749f82e120a5683ea748e4ea4e | |
parent | devel/flexdock: (diff) |
java/apache-commons-beanutils: fix build with modern JDK
Notes
Notes:
svn path=/head/; revision=555631
-rw-r--r-- | java/apache-commons-beanutils/files/patch-build.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/java/apache-commons-beanutils/files/patch-build.xml b/java/apache-commons-beanutils/files/patch-build.xml new file mode 100644 index 000000000000..4c1a8929b267 --- /dev/null +++ b/java/apache-commons-beanutils/files/patch-build.xml @@ -0,0 +1,15 @@ +--- build.xml.orig 2020-11-17 15:42:56 UTC ++++ build.xml +@@ -62,10 +62,10 @@ + + + <!-- Compiler source JDK version --> +- <property name="compile.source" value="1.5"/> ++ <property name="compile.source" value="1.6"/> + + <!-- Compiler target JDK version --> +- <property name="compile.target" value="1.5"/> ++ <property name="compile.target" value="1.6"/> + + <!-- Should Java compilations set the 'debug' compiler option? --> + <property name="compile.debug" value="true"/> |