diff options
author | Julien Lepiller <julien@lepiller.eu> | 2017-10-24 22:15:30 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2017-11-02 13:06:51 +0100 |
commit | 3c6c835806791e91f04e65d8c078842b69d06020 (patch) | |
tree | 380803411b48bc5cfed9e6502022586bcf784dca /gnu/packages | |
parent | 7a343e971a71f899e329004b70323af5296e059c (diff) | |
download | guix-3c6c835806791e91f04e65d8c078842b69d06020.tar guix-3c6c835806791e91f04e65d8c078842b69d06020.tar.gz |
gnu: Add java-fest-test.
* gnu/packages/java.scm (java-fest-test): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/java.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index 2df43d38a2..4be3554d4f 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -6397,3 +6397,26 @@ those in Perl and JavaScript.") (synopsis "FEST common utilities") (description "Common utilities used in all FEST module.") (license license:asl2.0))) + +(define-public java-fest-test + (package + (name "java-fest-test") + (version "2.1.0") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/alexruiz/fest-test/" + "archive/fest-test-" version ".tar.gz")) + (sha256 + (base32 + "1rxfbw6l9vc65iy1x3fb617qc6y4w2k430pgf1mfbxfdlxbm0f7g")))) + (build-system ant-build-system) + (arguments + `(#:jar-name "java-fest-test.jar" + #:source-dir "src/main/java" + #:tests? #f)); no tests + (inputs + `(("junit" ,java-junit))) + (home-page "https://github.com/alexruiz/fest-test") + (synopsis "Common FEST testing infrastructure") + (description "Fest-test contains the common FEST testing infrastructure.") + (license license:asl2.0))) |