svn commit: r392329 - head/java/jakarta-commons-collections

Greg Lewis glewis at FreeBSD.org
Fri Jul 17 02:35:03 UTC 2015


Author: glewis
Date: Fri Jul 17 02:35:02 2015
New Revision: 392329
URL: https://svnweb.freebsd.org/changeset/ports/392329

Log:
  . Interfaces like MultiMap in version 3.2.1 of Jakarta Commons Collections
    define a remove() operation which takes two arguments and clashes with
    the new remove() operation defined in Map for Java 8.  Hence, restrict
    to Java 6 and 7.
  
  PR:		201335

Modified:
  head/java/jakarta-commons-collections/Makefile

Modified: head/java/jakarta-commons-collections/Makefile
==============================================================================
--- head/java/jakarta-commons-collections/Makefile	Fri Jul 17 00:11:50 2015	(r392328)
+++ head/java/jakarta-commons-collections/Makefile	Fri Jul 17 02:35:02 2015	(r392329)
@@ -12,6 +12,7 @@ MAINTAINER=	makc at FreeBSD.org
 COMMENT=	Classes that extend/augment the Java Collections Framework
 
 USE_JAVA=	yes
+JAVA_VERSION=	1.6 1.7
 USE_ANT=	yes
 
 ALL_TARGET=	jar


More information about the svn-ports-all mailing list