mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add maven-resolver-spi.
* gnu/packages/maven.scm (maven-resolver-spi): New variable.
This commit is contained in:
parent
41125eaff8
commit
d85cb53924
1 changed files with 15 additions and 0 deletions
|
@ -48,3 +48,18 @@ (define-public maven-resolver-api
|
|||
(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.")))
|
||||
|
|
Loading…
Reference in a new issue