gnu: Add maven-resolver-spi.

* gnu/packages/maven.scm (maven-resolver-spi): New variable.
This commit is contained in:
Julien Lepiller 2018-02-25 16:08:57 +01:00
parent 41125eaff8
commit d85cb53924
No known key found for this signature in database
GPG key ID: 43111F4520086A0C

View file

@ -48,3 +48,18 @@ (define-public maven-resolver-api
(synopsis "Maven repository system API") (synopsis "Maven repository system API")
(description "This package contains the API for the maven repository system.") (description "This package contains the API for the maven repository system.")
(license license:asl2.0))) (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.")))