1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
Source: sezpoz
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: James Page <james.page@ubuntu.com>
Build-Depends:
debhelper (>= 11),
default-jdk,
default-jdk-doc,
junit4,
libanimal-sniffer-java,
libmaven-javadoc-plugin-java,
maven-debian-helper
Standards-Version: 4.1.4
Vcs-Git: https://salsa.debian.org/java-team/sezpoz.git
Vcs-Browser: https://salsa.debian.org/java-team/sezpoz
Homepage: https://github.com/jglick/sezpoz
Package: libsezpoz-java
Architecture: all
Depends: ${maven:Depends}, ${misc:Depends}
Recommends: ${maven:OptionalDepends}
Description: Lightweight library for modular service lookups
SezPoz is a lightweight and simple-to-learn library that lets you perform
modular service lookups. It provides some of the same capabilities as
(for example) java.util.ServiceLoader, Eclipse extension points, and NetBeans
Lookup and XML layers. However, SezPoz has some special advantages:
.
* The service registrations are made just using type-checked Java
annotations. There are no configuration files to edit, and your
Java IDE can show you registrations since they are simply usages
of an annotation.
* You can register individual objects (values of static fields or
methods) instead of whole classes.
* You can associate static metadata with each implementation, using
regular annotation values. The caller can choose to inspect the
metadata without loading the actual implementation object
(as with Eclipse extension points).
Package: libsezpoz-java-doc
Architecture: all
Section: doc
Depends: default-jdk-doc, ${maven:DocDepends}, ${misc:Depends}
Suggests: libsezpoz-java
Description: Documentation for SezPoz
SezPoz is a lightweight and simple-to-learn library that lets you perform
modular service lookups. It provides some of the same capabilities as
(for example) java.util.ServiceLoader, Eclipse extension points, and NetBeans
Lookup and XML layers. However, SezPoz has some special advantages:
.
* The service registrations are made just using type-checked Java
annotations. There are no configuration files to edit, and your
Java IDE can show you registrations since they are simply usages
of an annotation.
* You can register individual objects (values of static fields or
methods) instead of whole classes.
* You can associate static metadata with each implementation, using
regular annotation values. The caller can choose to inspect the
metadata without loading the actual implementation object
(as with Eclipse extension points).
.
This package provides the API documentation for libsezpoz-java.
|