gnu: Add java-eclipse-osgi.

* gnu/packages/java.scm (java-eclipse-osgi): New variable.
This commit is contained in:
Ricardo Wurmus 2017-05-09 08:43:13 +02:00
parent 37e2e5d434
commit 674e93a057
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -2343,6 +2343,31 @@ (define-public java-osgi-core
the OSGi Core module.")
(license license:asl2.0)))
(define-public java-eclipse-osgi
(package
(name "java-eclipse-osgi")
(version "3.11.3")
(source (origin
(method url-fetch)
(uri (string-append "https://repo1.maven.org/maven2/"
"org/eclipse/platform/org.eclipse.osgi/"
version "/org.eclipse.osgi-"
version "-sources.jar"))
(sha256
(base32
"00cqc6lb29n0zv68b4l842vzkwawvbr7gshfdygsk8sicvcq2c7b"))))
(build-system ant-build-system)
(arguments
`(#:tests? #f ; no tests included
#:jar-name "eclipse-equinox-osgi.jar"))
(inputs
`(("java-osgi-annotation" ,java-osgi-annotation)))
(home-page "http://www.eclipse.org/equinox/")
(synopsis "Eclipse Equinox OSGi framework")
(description "This package provides an implementation of the OSGi Core
specification.")
(license license:epl1.0)))
(define-public java-commons-cli
(package
(name "java-commons-cli")