mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add java-eclipse-rdf4j-http-client.
* gnu/packages/java-rdf.scm (java-eclipse-rdf4j-http-client): New variable.
This commit is contained in:
parent
0c5de09b39
commit
208be0e1af
1 changed files with 35 additions and 0 deletions
|
@ -171,6 +171,41 @@ concepts in Java.")))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(install-from-pom "pom.xml")))))
|
(install-from-pom "pom.xml")))))
|
||||||
|
|
||||||
|
(define-public java-eclipse-rdf4j-http-client
|
||||||
|
(package
|
||||||
|
(name "java-eclipse-rdf4j-http-client")
|
||||||
|
(version %rdf4j-version)
|
||||||
|
(source %rdf4j-source)
|
||||||
|
(build-system ant-build-system)
|
||||||
|
(arguments
|
||||||
|
(substitute-keyword-arguments
|
||||||
|
(rdf4j-common-arguments "rdf4j-http-client.jar"
|
||||||
|
"core/http/client")
|
||||||
|
((#:phases phases)
|
||||||
|
#~(modify-phases #$phases
|
||||||
|
(add-before 'install 'generate-pom.xml
|
||||||
|
(generate-pom.xml "guix-pom.xml"
|
||||||
|
"org.eclipse.rdf4j"
|
||||||
|
"rdf4j-http-client" #$version))
|
||||||
|
(replace 'install
|
||||||
|
(install-from-pom "guix-pom.xml"))))))
|
||||||
|
(inputs (list java-commons-io
|
||||||
|
java-httpcomponents-httpcore
|
||||||
|
java-httpcomponents-httpclient
|
||||||
|
java-slf4j-api))
|
||||||
|
(propagated-inputs (list java-eclipse-rdf4j-http-protocol
|
||||||
|
java-eclipse-rdf4j-repository-api
|
||||||
|
java-eclipse-rdf4j-queryparser-sparql
|
||||||
|
java-eclipse-rdf4j-queryresultio-api
|
||||||
|
java-eclipse-rdf4j-queryresultio-binary
|
||||||
|
java-eclipse-rdf4j-queryresultio-sparqlxml
|
||||||
|
java-eclipse-rdf4j-queryresultio-sparqljson))
|
||||||
|
(home-page "https://rdf4j.org/")
|
||||||
|
(synopsis "HTTP client for RDF4J")
|
||||||
|
(description "This package provides a client for communicating with RDF4J
|
||||||
|
servers.")
|
||||||
|
(license license:epl1.0)))
|
||||||
|
|
||||||
(define-public java-eclipse-rdf4j-http-protocol
|
(define-public java-eclipse-rdf4j-http-protocol
|
||||||
(package
|
(package
|
||||||
(name "java-eclipse-rdf4j-http-protocol")
|
(name "java-eclipse-rdf4j-http-protocol")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue