gnu: Add java-osgi-service-cm.

* gnu/packages/java.scm (java-osgi-service-cm): New variable.
This commit is contained in:
Julien Lepiller 2017-10-01 19:28:13 +02:00
parent 1884bb8198
commit fb9c48b829
No known key found for this signature in database
GPG Key ID: 43111F4520086A0C
1 changed files with 28 additions and 0 deletions

View File

@ -5225,3 +5225,31 @@ by the caller.")
and service platform for the Java programming language. This package contains
bundle tracking utility classes.")
(license license:asl2.0)))
(define-public java-osgi-service-cm
(package
(name "java-osgi-service-cm")
(version "1.5.0")
(source (origin
(method url-fetch)
(uri (string-append "http://central.maven.org/maven2/org/osgi/"
"org.osgi.service.cm/"
version "/org.osgi.service.cm-"
version "-sources.jar"))
(sha256
(base32
"1z8kap48y3xi0ggj8v6czglfnpnd94mmismgi2wbqhj1nl5fzbp6"))))
(build-system ant-build-system)
(arguments
`(#:jar-name "osgi-service-cm.jar"
#:tests? #f)); no tests
(inputs
`(("framework" ,java-osgi-framework)
("annotation" ,java-osgi-annotation)))
(home-page "http://www.osgi.org")
(synopsis "OSGI Configuration Management")
(description
"OSGi, for Open Services Gateway initiative framework, is a module system
and service platform for the Java programming language. This package contains
utility classes for the configuration of services.")
(license license:asl2.0)))