>From bf3c6f0f7a8a9cacf7bdb331eba25d05d8f0ad3c Mon Sep 17 00:00:00 2001 From: Julien Lepiller Date: Wed, 25 Oct 2017 23:37:47 +0200 Subject: [PATCH 19/22] gnu: Add java-powermock-modules-junit4-common. * gnu/packages/java.scm (java-powermock-modules-junit4-common): New variable. --- gnu/packages/java.scm | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 1e4c2506e..82fd6567c 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -6855,3 +6855,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))))) -- 2.14.3