From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23:18:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32F5516A4CE; Sat, 17 Apr 2004 23:18:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BE6A43D31; Sat, 17 Apr 2004 23:18:20 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6IJGe050973; Sat, 17 Apr 2004 23:18:20 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6IJt4050972; Sat, 17 Apr 2004 23:18:19 -0700 (PDT) (envelope-from glewis) Message-Id: <200404180618.i3I6IJt4050972@repoman.freebsd.org> From: Greg Lewis Date: Sat, 17 Apr 2004 23:18:19 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java Makefileports/java/jakarta-commons-discovery Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 06:18:20 -0000 glewis 2004/04/17 23:18:19 PDT FreeBSD ports repository Modified files: java Makefile Added files: java/jakarta-commons-discovery Makefile distinfo pkg-descr Log: Add a port of jakarta-commons-discovery. The Discovery Component is about discovering, or finding, implementations for pluggable interfaces. It provides facilities intantiating classes in general, and for lifecycle management of singleton (factory) classes. Fundamentally, Discovery locates classes that implement a given Java interface. The discovery pattern, though not necessarily this package, is used in many projects including JAXP (SaxParserFactory and others) and commons-logging (LogFactory). By extracting this pattern, other projects can (re)use it and take advantage of improvements to the pattern as Discovery evolves. Discovery improves over previous implementations by establishing facilities for working within managed environments. These allow configuration and property overrides without appealing to the global System properties (which are scoped across an entire JVM). PR: 65490 Submitted by: Herve Quiroz Revision Changes Path 1.122 +1 -0 ports/java/Makefile 1.1 +48 -0 ports/java/jakarta-commons-discovery/Makefile (new) 1.1 +2 -0 ports/java/jakarta-commons-discovery/distinfo (new) 1.1 +16 -0 ports/java/jakarta-commons-discovery/pkg-descr (new)