From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36640) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1epyfj-0001ef-SO for guix-patches@gnu.org; Sun, 25 Feb 2018 10:57:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1epyff-0000fc-7Y for guix-patches@gnu.org; Sun, 25 Feb 2018 10:57:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:52684) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1epyff-0000fK-49 for guix-patches@gnu.org; Sun, 25 Feb 2018 10:57:03 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1epyfe-00037M-S2 for guix-patches@gnu.org; Sun, 25 Feb 2018 10:57:02 -0500 Subject: [bug#30606] [PATCH 2/5] gnu: Add maven-resolver-spi. Resent-Message-ID: From: Julien Lepiller Date: Sun, 25 Feb 2018 16:56:40 +0100 Message-Id: <20180225155643.2383-2-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-spi): New variable. --- gnu/packages/maven.scm | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/gnu/packages/maven.scm b/gnu/packages/maven.scm index 7fcc7b453..8fa7ecc5b 100644 --- a/gnu/packages/maven.scm +++ b/gnu/packages/maven.scm @@ -48,3 +48,18 @@ (synopsis "Maven repository system API") (description "This package contains the API for the maven repository system.") (license license:asl2.0))) + +(define-public maven-resolver-spi + (package + (inherit maven-resolver-api) + (name "maven-resolver-spi") + (arguments + `(#:jar-name "maven-resolver-spi.jar" + #:source-dir "maven-resolver-spi/src/main/java" + #:test-dir "maven-resolver-spi/src/test" + #:jdk ,icedtea-8)) + (inputs + `(("maven-resolver-api" ,maven-resolver-api))) + (synopsis "Maven repository system SPI") + (description "This package contains the service provider interface (SPI) +for repository system implementations and repository connectors."))) -- 2.16.2