diff options
author | Julien Lepiller <julien@lepiller.eu> | 2017-10-25 23:37:47 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2017-11-02 13:07:24 +0100 |
commit | 6c21d46c70b2a0912d1adab82e0ef74bace5605f (patch) | |
tree | cfbfb666378438b14c589e0ffbc7a8c0717aa767 /gnu/packages/java.scm | |
parent | 2d5d65d7dd4cfb976869927682c91764a974fc61 (diff) | |
download | guix-6c21d46c70b2a0912d1adab82e0ef74bace5605f.tar guix-6c21d46c70b2a0912d1adab82e0ef74bace5605f.tar.gz |
gnu: Add java-powermock-modules-junit4-common.
* gnu/packages/java.scm (java-powermock-modules-junit4-common): New
variable.
Diffstat (limited to 'gnu/packages/java.scm')
-rw-r--r-- | gnu/packages/java.scm | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 0470f42a00..77e34a2f90 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -6857,3 +6857,20 @@ done to the IDE or continuous integration servers which simplifies adoption.") (inputs `(("core" ,java-powermock-core) ("reflect" ,java-powermock-reflect))))) + +(define-public java-powermock-modules-junit4-common + (package + (inherit java-powermock-reflect) + (name "java-powermock-modules-junit4-common") + (build-system ant-build-system) + (arguments + `(#:jar-name "java-powermock-modules-junit4-common.jar" + #:jdk ,icedtea-8 + #:source-dir "powermock-modules/powermock-module-junit4-common/src/main/java" + #:test-dir "powermock-modules/powermock-module-junit4-common/src/test")) + (inputs + `(("core" ,java-powermock-core) + ("easymock" ,java-easymock) + ("reflect" ,java-powermock-reflect) + ("hamcrest" ,java-hamcrest-core) + ("cglib" ,java-cglib))))) |