From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36637) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1epyfj-0001eb-Ri for guix-patches@gnu.org; Sun, 25 Feb 2018 10:57:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1epyfg-0000hf-6h for guix-patches@gnu.org; Sun, 25 Feb 2018 10:57:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:52686) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1epyfg-0000h3-2w for guix-patches@gnu.org; Sun, 25 Feb 2018 10:57:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1epyff-00037b-RK for guix-patches@gnu.org; Sun, 25 Feb 2018 10:57:03 -0500 Subject: [bug#30606] [PATCH 4/5] gnu: Add maven-resolver-util. Resent-Message-ID: From: Julien Lepiller Date: Sun, 25 Feb 2018 16:56:42 +0100 Message-Id: <20180225155643.2383-4-julien@lepiller.eu> In-Reply-To: <20180225164822.60ae5c2a@lepiller.eu> References: <20180225164822.60ae5c2a@lepiller.eu> 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: 30606@debbugs.gnu.org gnu/packages/maven.scm (maven-resolver-util): New variable. --- gnu/packages/maven.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index 8cc493806..6c8f4b931 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -79,3 +79,22 @@ for repository system implementations and repository connectors."))) (synopsis "Utility classes for testing the maven repository system") (description "This package contains a collection of utility classes to ease testing of the repository system."))) + +(define-public maven-resolver-util + (package + (inherit maven-resolver-api) + (name "maven-resolver-util") + (arguments + `(#:jar-name "maven-resolver-util.jar" + #:source-dir "maven-resolver-util/src/main/java" + #:test-dir "maven-resolver-util/src/test" + #:jdk ,icedtea-8)) + (inputs + `(("maven-resolver-api" ,maven-resolver-api))) + (native-inputs + `(("java-junit" ,java-junit) + ("java-hamcrest-core" ,java-hamcrest-core) + ("maven-resolver-test-util" ,maven-resolver-test-util))) + (synopsis "Utility classes for the maven repository system") + (description "This package contains a collection of utility classes to +ease usage of the repository system."))) -- 2.16.2