mirror of
git://git.savannah.gnu.org/guix.git
synced 2023-12-14 03:33:07 +01:00
gnu: Add java-eclipse-aether-util.
* gnu/packages/maven.scm (java-eclipse-aether-util): New variable.
This commit is contained in:
parent
7a85b602ca
commit
47b4ed504d
1 changed files with 20 additions and 0 deletions
|
@ -556,6 +556,26 @@ for repository system implementations and repository connectors.")))
|
||||||
(description "This package contains a collection of utility classes to
|
(description "This package contains a collection of utility classes to
|
||||||
ease testing of the repository system.")))
|
ease testing of the repository system.")))
|
||||||
|
|
||||||
|
(define-public java-eclipse-aether-util
|
||||||
|
(package
|
||||||
|
(inherit java-eclipse-aether-api)
|
||||||
|
(name "java-eclipse-aether-util")
|
||||||
|
(arguments
|
||||||
|
`(#:jar-name "aether-util.jar"
|
||||||
|
#:source-dir "aether-util/src/main/java"
|
||||||
|
#:test-dir "aether-util/src/test"
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(replace 'install (install-from-pom "aether-util/pom.xml")))))
|
||||||
|
(propagated-inputs
|
||||||
|
`(("java-eclipse-aether-api" ,java-eclipse-aether-api)))
|
||||||
|
(native-inputs
|
||||||
|
`(("java-eclipse-aether-test-util" ,java-eclipse-aether-test-util)
|
||||||
|
("java-junit" ,java-junit)))
|
||||||
|
(synopsis "Utility classes for the maven repository system")
|
||||||
|
(description "This package contains a collection of utility classes to
|
||||||
|
ease usage of the repository system.")))
|
||||||
|
|
||||||
(define-public maven-shared-utils
|
(define-public maven-shared-utils
|
||||||
(package
|
(package
|
||||||
(name "maven-shared-utils")
|
(name "maven-shared-utils")
|
||||||
|
|
Loading…
Reference in a new issue