mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add java-sonatype-aether-spi.
* gnu/packages/maven.scm (java-sonatype-aether-spi): New variable.
This commit is contained in:
parent
a18f0a7fd1
commit
c68e3dc139
1 changed files with 17 additions and 0 deletions
|
@ -398,6 +398,23 @@ (define-public java-sonatype-aether-api
|
|||
(description "This package contains the API for the maven repository system.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public java-sonatype-aether-spi
|
||||
(package
|
||||
(inherit java-sonatype-aether-api)
|
||||
(name "java-sonatype-aether-spi")
|
||||
(arguments
|
||||
`(#:jar-name "aether-spi.jar"
|
||||
#:source-dir "aether-spi/src/main/java"
|
||||
#:tests? #f; no tests
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'install (install-from-pom "aether-spi/pom.xml")))))
|
||||
(propagated-inputs
|
||||
`(("java-sonatype-aether-api" ,java-sonatype-aether-api)))
|
||||
(synopsis "Maven repository system SPI")
|
||||
(description "This package contains the service provider interface (SPI)
|
||||
for repository system implementations and repository connectors.")))
|
||||
|
||||
(define-public maven-shared-utils
|
||||
(package
|
||||
(name "maven-shared-utils")
|
||||
|
|
Loading…
Reference in a new issue