diff options
author | Julien Lepiller <julien@lepiller.eu> | 2019-05-03 12:19:21 +0200 |
---|---|---|
committer | Julien Lepiller <julien@lepiller.eu> | 2019-11-13 22:48:33 +0100 |
commit | d45f73c9a17d2c03522b5ec4a4a307354cb28fc4 (patch) | |
tree | 35f581fa42530fd545bd8786c752e15c388b6d9a | |
parent | da655b1eb2da35b58665c646589c2b533a941459 (diff) | |
download | guix-d45f73c9a17d2c03522b5ec4a4a307354cb28fc4.tar.gz guix-d45f73c9a17d2c03522b5ec4a4a307354cb28fc4.zip |
gnu: Add java-jsonp-impl.
* gnu/packages/java.scm (java-jsonp-impl): New variable.
-rw-r--r-- | gnu/packages/java.scm | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm index c145898af6..dc1cb78a01 100644 --- a/gnu/packages/java.scm +++ b/gnu/packages/java.scm @@ -11260,3 +11260,18 @@ and allows to build a Java object model for JSON text using API classes ;; either gpl2 only with classpath exception, or epl2.0. (license (list license:gpl2 license:epl2.0)))) + +(define-public java-jsonp-impl + (package + (inherit java-jsonp-api) + (name "java-jsonp-impl") + (arguments + `(#:jar-name "jsonp-impl.jar" + #:tests? #f + #:source-dir "impl/src/main/java" + #:test-dir "impl/src/test")) + (propagated-inputs + `(("java-jsonp-api" ,java-jsonp-api))) + (description "JSON Processing (JSON-P) is a Java API to process (e.g. +parse, generate, transform and query) JSON messages. This package contains +a reference implementation of that API."))) |