me
/
guix
Archived
1
0
Fork 0

gnu: Add java-powermock-core.

* gnu/packages/java.scm (java-powermock-core): New variable.
master
Julien Lepiller 2017-10-25 23:07:04 +02:00
parent 8d6a48150a
commit d4a4d5da60
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C
1 changed files with 18 additions and 0 deletions

View File

@ -6825,3 +6825,21 @@ constructors, final classes and methods, private methods, removal of static
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)))))