summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2017-05-09 08:42:38 +0200
committerRicardo Wurmus <rekado@elephly.net>2017-05-15 22:33:14 +0200
commit6ee6d0b58a022d2a659304496e9a304d1b20663e (patch)
treebe894da3bffc8e8c3c2c36b8435968a82f7002d5 /gnu
parent77d7b57cdcc22a4ab6fc4b52e2edfeb974954f57 (diff)
gnu: Add java-osgi-annotation.
* gnu/packages/java.scm (java-osgi-annotation): New variable.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/java.scm25
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/java.scm b/gnu/packages/java.scm
index 1f26ef67adf..26d251f1381 100644
--- a/gnu/packages/java.scm
+++ b/gnu/packages/java.scm
@@ -2292,6 +2292,31 @@ many basic Internet protocols. The purpose of the library is to provide
2292fundamental protocol access, not higher-level abstractions.") 2292fundamental protocol access, not higher-level abstractions.")
2293 (license license:asl2.0))) 2293 (license license:asl2.0)))
2294 2294
2295(define-public java-osgi-annotation
2296 (package
2297 (name "java-osgi-annotation")
2298 (version "6.0.0")
2299 (source (origin
2300 (method url-fetch)
2301 (uri (string-append "https://repo1.maven.org/maven2/"
2302 "org/osgi/org.osgi.annotation/" version "/"
2303 "org.osgi.annotation-" version "-sources.jar"))
2304 (sha256
2305 (base32
2306 "1q718mb7gqg726rh6pc2hcisn8v50nv35abbir0jypmffhiii85w"))))
2307 (build-system ant-build-system)
2308 (arguments
2309 `(#:tests? #f ; no tests
2310 #:jar-name "osgi-annotation.jar"))
2311 (home-page "http://www.osgi.org")
2312 (synopsis "Annotation module of OSGi framework")
2313 (description
2314 "OSGi, for Open Services Gateway initiative framework, is a module system
2315and service platform for the Java programming language. This package contains
2316the OSGi annotation module, providing additional services to help dynamic
2317components.")
2318 (license license:asl2.0)))
2319
2295(define-public java-commons-cli 2320(define-public java-commons-cli
2296 (package 2321 (package
2297 (name "java-commons-cli") 2322 (name "java-commons-cli")