gnu: Add java-slf4-simple.
* gnu/packages/java.scm (java-slf4j-simple): New variable.master
parent
ce38015066
commit
88f256a192
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2016, 2017 Roel Janssen <roel@gnu.org>
|
;;; Copyright © 2016, 2017 Roel Janssen <roel@gnu.org>
|
||||||
;;; Copyright © 2017 Carlo Zancanaro <carlo@zancanaro.id.au>
|
;;; Copyright © 2017 Carlo Zancanaro <carlo@zancanaro.id.au>
|
||||||
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
|
||||||
|
;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -4207,6 +4208,40 @@ allowing the end user to plug in the desired logging framework at deployment
|
||||||
time.")
|
time.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public java-slf4j-simple
|
||||||
|
(package
|
||||||
|
(name "java-slf4j-simple")
|
||||||
|
(version "1.7.25")
|
||||||
|
(source (package-source java-slf4j-api))
|
||||||
|
(build-system ant-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:jar-name "slf4j-simple.jar"
|
||||||
|
#:source-dir "slf4j-simple/src/main"
|
||||||
|
#:test-dir "slf4j-simple/src/test"
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
;; The tests need some test classes from slf4j-api
|
||||||
|
(add-before 'check 'build-slf4j-api-test-helpers
|
||||||
|
(lambda _
|
||||||
|
;; Add current dir to CLASSPATH ...
|
||||||
|
(setenv "CLASSPATH"
|
||||||
|
(string-append (getcwd) ":" (getenv "CLASSPATH")))
|
||||||
|
;; ... and build test helper classes here:
|
||||||
|
(zero?
|
||||||
|
(apply system*
|
||||||
|
`("javac" "-d" "."
|
||||||
|
,@(find-files "slf4j-api/src/test" ".*\\.java")))))))))
|
||||||
|
(inputs
|
||||||
|
`(("java-junit" ,java-junit)
|
||||||
|
("java-hamcrest-core" ,java-hamcrest-core)
|
||||||
|
("java-slf4j-api" ,java-slf4j-api)))
|
||||||
|
(home-page "https://www.slf4j.org/")
|
||||||
|
(synopsis "Simple implementation of simple logging facade for Java")
|
||||||
|
(description "SLF4J binding for the Simple implementation, which outputs
|
||||||
|
all events to System.err. Only messages of level INFO and higher are
|
||||||
|
printed.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public antlr2
|
(define-public antlr2
|
||||||
(package
|
(package
|
||||||
(name "antlr2")
|
(name "antlr2")
|
||||||
|
|
Reference in New Issue