From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:33202) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hlffs-00068c-2r for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hlffm-00067f-1z for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:14 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:58178) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hlffj-00063T-Sb for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:09 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hlffj-0006zZ-N8 for guix-patches@gnu.org; Thu, 11 Jul 2019 16:28:07 -0400 Subject: [bug#36605] [PATCH 05/12] gnu: Add java-plexus-interpolation. Resent-Message-ID: From: Hartmut Goebel Date: Thu, 11 Jul 2019 22:26:27 +0200 Message-Id: <20190711202644.32014-19-h.goebel@crazy-compilers.com> In-Reply-To: <20190711202644.32014-1-h.goebel@crazy-compilers.com> References: <58494E16.9010909@crazy-compilers.com> <20190711202644.32014-1-h.goebel@crazy-compilers.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 36605@debbugs.gnu.org * gnu/packages/java.scm (java-plexus-interplation): New variable. --- gnu/packages/java.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 0dfd9fa..3687c7e 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -1288,3 +1288,31 @@ sharing common test data, and test runners for running tests.") (description "Various Java utility classes to ease working with strings, files, command lines, XML and more.") (license license:asl2.0))) + +(define-public java-plexus-interpolation + (package + (name "java-plexus-interpolation") + (version "1.23") + (source (origin + (method url-fetch) + (uri (codehaus-plexus-url "interpolation" version)) + (sha256 (base32 "1w79ljwk42ymrgy8kqxq4l82pgdj6287gabpfnpkyzbrnclsnfrp")))) + (build-system ant-build-system) + ; todo: javadoc + (arguments + `(#:tests? #f ; todo: tests + #:jar-name (string-append "plexus-interpolation-" ,version ".jar") + #:src-dir "src/main")) + (native-inputs + `(("java-junit" ,java-junit))) + (home-page "http://codehaus-plexus.github.io/plexus-interpolation/") + (synopsis "Java components for interpolating ${} strings and the like") + (description "Plexus interpolator is the outgrowth of multiple iterations +of development focused on providing a more modular, flexible interpolation +framework for the expression language style commonly seen in Maven, Plexus, +and other related projects. + +It has its foundation in the org.codehaus.plexus.utils.interpolation package +within plexus-utils, but has been separated in order to allow these two +libraries to vary independently of one another.") + (license license:asl2.0))) -- 2.7.4