mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add java-osgi-service-event.
* gnu/packages/java.scm (java-osgi-service-event): New variable.
This commit is contained in:
parent
81b55b1e77
commit
8af92c8ffd
1 changed files with 28 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue