Skip to content
Commits on Source (7)
## Version 1.4, release 18.05.2018
Upgraded dependencies
## Version 1.3, release 02.01.2018
Upgraded dependencies
......
[![Maven Central](https://img.shields.io/maven-central/v/org.vafer/jdependency.svg?maxAge=2592000)](http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22org.vafer%22%20AND%20a%3A%22jdependency%22)
# jdependency - explore your classpath
jdependency is small library that helps you analyze class level dependencies,
clashes and missing classes.
Check the documentation on how to use it with [javadocs](http://tcurdt.github.com/jdependency/release/1.3/apidocs/) and a source
[xref](http://tcurdt.github.com/jdependency/release/1.3/xref/) is also available.
Check the documentation on how to use it with [javadocs](http://tcurdt.github.com/jdependency/release/1.4/apidocs/) and a source
[xref](http://tcurdt.github.com/jdependency/release/1.4/xref/) is also available.
## Where to get it
......
jdependency (1.4-1) unstable; urgency=medium
* New upstream release
* Standards-Version updated to 4.1.4
* Use salsa.debian.org Vcs-* URLs
* Switch to debhelper level 11
-- Emmanuel Bourg <ebourg@apache.org> Mon, 04 Jun 2018 23:05:29 +0200
jdependency (1.3-1) unstable; urgency=medium
* New upstream release
......
......@@ -4,17 +4,17 @@ Priority: optional
Maintainer: Debian Java Maintainers <pkg-java-maintainers@lists.alioth.debian.org>
Uploaders: Emmanuel Bourg <ebourg@apache.org>
Build-Depends:
debhelper (>= 10),
debhelper (>= 11),
default-jdk,
junit4,
libasm-java (>= 6.0~),
libcommons-io-java,
libmaven-antrun-plugin-java,
maven-debian-helper (>= 1.5)
Standards-Version: 4.1.3
Vcs-Git: https://anonscm.debian.org/git/pkg-java/jdependency.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/jdependency.git
Homepage: http://github.com/tcurdt/jdependency
Standards-Version: 4.1.4
Vcs-Git: https://salsa.debian.org/java-team/jdependency.git
Vcs-Browser: https://salsa.debian.org/java-team/jdependency
Homepage: https://github.com/tcurdt/jdependency
Package: libjdependency-java
Architecture: all
......
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: jdependency
Source: http://github.com/tcurdt/jdependency
Source: https://github.com/tcurdt/jdependency
Files: *
Copyright: 2008-2011, Torsten Curdt <tcurdt at apache.org>
......
......@@ -7,6 +7,3 @@ export JAVA_HOME = /usr/lib/jvm/default-java
override_dh_installchangelogs:
dh_installchangelogs -- HISTORY.md
get-orig-source:
uscan --download-current-version --force-download --rename
......@@ -4,7 +4,7 @@
<groupId>org.vafer</groupId>
<artifactId>jdependency</artifactId>
<name>jdependency</name>
<version>1.3</version>
<version>1.4</version>
<description>This project provides an API to analyse class dependencies</description>
<url>http://github.com/tcurdt/jdependency</url>
<developers>
......@@ -38,8 +38,9 @@
</scm>
<properties>
<test.workingDirectory>${project.build.directory}/test-working-directory</test.workingDirectory>
<asm.version>6.0</asm.version>
<asm.version>6.1.1</asm.version>
<additionalparam>-Xdoclint:none</additionalparam>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
......