gnu: Add java-assertj.

* gnu/packages/java.scm (java-assertj): New variable.
master
Julien Lepiller 2017-10-14 23:27:43 +02:00
parent ec4e8ad724
commit b12fe1e517
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C
1 changed files with 31 additions and 0 deletions

View File

@ -6165,3 +6165,34 @@ Java 6 and above.")
`(("guice" ,java-guice)
("servlet" ,java-tomcat)
,@(package-inputs java-guice)))))
(define-public java-assertj
(package
(name "java-assertj")
(version "3.8.0")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/joel-costigliola/"
"assertj-core/archive/"
"assertj-core-" version ".tar.gz"))
(sha256
(base32
"1kf124fxskf548rklkg86294w2x6ajqrff94rrhyqns31danqkfz"))))
(build-system ant-build-system)
(arguments
`(#:jar-name "java-assertj.jar"
#:jdk ,icedtea-8
#:source-dir "src/main/java"
#:tests? #f)); depends on tng-junit which depends on assertj
(inputs
`(("cglib" ,java-cglib)
("junit" ,java-junit)
("hamcrest" ,java-hamcrest-core)))
(native-inputs
`(("mockito" ,java-mockito-1)))
(home-page "https://joel-costigliola.github.io/assertj/index.html")
(synopsis "Fluent assertions for java")
(description "AssertJ core is a Java library that provides a fluent
interface for writing assertions. Its main goal is to improve test code
readability and make maintenance of tests easier.")
(license license:asl2.0)))