mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: Add java-osgi-annotation.
* gnu/packages/java.scm (java-osgi-annotation): New variable.
This commit is contained in:
parent
77d7b57cdc
commit
6ee6d0b58a
1 changed files with 25 additions and 0 deletions
|
@ -2292,6 +2292,31 @@ (define-public java-commons-net
|
|||
fundamental protocol access, not higher-level abstractions.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public java-osgi-annotation
|
||||
(package
|
||||
(name "java-osgi-annotation")
|
||||
(version "6.0.0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "https://repo1.maven.org/maven2/"
|
||||
"org/osgi/org.osgi.annotation/" version "/"
|
||||
"org.osgi.annotation-" version "-sources.jar"))
|
||||
(sha256
|
||||
(base32
|
||||
"1q718mb7gqg726rh6pc2hcisn8v50nv35abbir0jypmffhiii85w"))))
|
||||
(build-system ant-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; no tests
|
||||
#:jar-name "osgi-annotation.jar"))
|
||||
(home-page "http://www.osgi.org")
|
||||
(synopsis "Annotation module of OSGi framework")
|
||||
(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 annotation module, providing additional services to help dynamic
|
||||
components.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public java-commons-cli
|
||||
(package
|
||||
(name "java-commons-cli")
|
||||
|
|
Loading…
Reference in a new issue