gnu: Add java-osgi-service-event.

* gnu/packages/java.scm (java-osgi-service-event): New variable.
This commit is contained in:
Ricardo Wurmus 2017-05-09 13:54:19 +02:00
parent 81b55b1e77
commit 8af92c8ffd
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -2343,6 +2343,34 @@ (define-public java-osgi-core
the OSGi Core module.")
(license license:asl2.0)))
(define-public java-osgi-service-event
(package
(name "java-osgi-service-event")
(version "1.3.1")
(source (origin
(method url-fetch)
(uri (string-append "https://repo1.maven.org/maven2/"
"org/osgi/org.osgi.service.event/"
version "/org.osgi.service.event-"
version "-sources.jar"))
(sha256
(base32
"1nyhlgagwym75bycnjczwbnpymv2iw84zbhvvzk84g9q736i6qxm"))))
(build-system ant-build-system)
(arguments
`(#:tests? #f ; no tests
#:jar-name "osgi-service-event.jar"))
(inputs
`(("java-osgi-annotation" ,java-osgi-annotation)
("java-osgi-core" ,java-osgi-core)))
(home-page "http://www.osgi.org")
(synopsis "OSGi service event module")
(description
"OSGi, for Open Services Gateway initiative framework, is a module system
and service platform for the Java programming language. This package contains
the OSGi @code{org.osgi.service.event} module.")
(license license:asl2.0)))
(define-public java-eclipse-osgi
(package
(name "java-eclipse-osgi")