mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add java-powermock-core.
* gnu/packages/java.scm (java-powermock-core): New variable.
This commit is contained in:
parent
8d6a48150a
commit
d4a4d5da60
1 changed files with 18 additions and 0 deletions
|
@ -6825,3 +6825,21 @@ (define-public java-powermock-reflect
|
||||||
initializers and more. By using a custom classloader no changes need to be
|
initializers and more. By using a custom classloader no changes need to be
|
||||||
done to the IDE or continuous integration servers which simplifies adoption.")
|
done to the IDE or continuous integration servers which simplifies adoption.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public java-powermock-core
|
||||||
|
(package
|
||||||
|
(inherit java-powermock-reflect)
|
||||||
|
(name "java-powermock-core")
|
||||||
|
(arguments
|
||||||
|
`(#:jar-name "java-powermock-core.jar"
|
||||||
|
#:source-dir "powermock-core/src/main/java"
|
||||||
|
#:test-dir "powermock-core/src/test"
|
||||||
|
#:tests? #f; requires powermock-api
|
||||||
|
#:jdk ,icedtea-8))
|
||||||
|
(inputs
|
||||||
|
`(("reflect" ,java-powermock-reflect)
|
||||||
|
("javassist" ,java-jboss-javassist)))
|
||||||
|
(native-inputs
|
||||||
|
`(("junit" ,java-junit)
|
||||||
|
("assertj" ,java-assertj)
|
||||||
|
("mockito" ,java-mockito-1)))))
|
||||||
|
|
Loading…
Reference in a new issue