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
|
Source: animal-sniffer
Section: java
Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Matthias Schmitz <matthias@sigxcpu.org>
Build-Depends:
ant,
debhelper-compat (= 13),
default-jdk,
maven-debian-helper (>= 2.0)
Build-Depends-Indep:
junit,
libasm-java (>= 5.0),
libbuild-helper-maven-plugin-java,
libmaven-common-artifact-filters-java,
libmaven-enforcer-plugin-java,
libmaven-invoker-plugin-java,
libmaven-plugin-tools-java,
libmaven-shade-plugin-java,
libmaven3-core-java
Standards-Version: 4.7.0
Vcs-Git: https://salsa.debian.org/java-team/animal-sniffer.git
Vcs-Browser: https://salsa.debian.org/java-team/animal-sniffer
Homepage: http://www.mojohaus.org/animal-sniffer/animal-sniffer-maven-plugin/
Package: libanimal-sniffer-java
Architecture: all
Depends: ${maven:Depends}, ${misc:Depends}
Recommends: ${maven:OptionalDepends}
Description: JDK/API verification tools
Animal Sniffer provides tools to assist verifying that classes compiled with a
newer JDK/API are compatible with an older JDK/API.
.
The Java Boot Classpath Detector is an executable jar file which tries to
determine the boot classpath of the Java Runtime and outputs that classpath to
the standard output.
.
Animal Sniffer Annotations provides Java 1.5+ annotations which allow marking
methods which Animal Sniffer should ignore signature violations of. Animal
Sniffer is designed to detect when you have used classes/methods/fields which
are not part of the JRE that you are targeting. There are certain situations
when you might be compiling with a newer JDK than the JRE you are targeting.
.
The Animal Sniffer ANT Tasks can be used to build signatures of APIs and to
check your classes against previously generated signatures.
.
The Animal Sniffer Enforcer Rule is used to check your classes against
previously generated signatures.
.
The Animal Sniffer Maven Plugin is used to build signatures of APIs and to
check your classes against previously generated signatures.
|