Skip to content
Commits on Source (5)
libquartz-java (1:1.8.6-6) unstable; urgency=medium
* Team upload.
* Fixed the build failure with Java 11 (Closes: #911182)
* Standards-Version updated to 4.2.1
* Switch to debhelper level 11
* Use salsa.debian.org Vcs-* URLs
-- Emmanuel Bourg <ebourg@apache.org> Tue, 16 Oct 2018 23:57:28 +0200
libquartz-java (1:1.8.6-5) unstable; urgency=medium
* Team upload.
......
......@@ -7,7 +7,7 @@ Uploaders:
Torsten Werner <twerner@debian.org>,
tony mancill <tmancill@debian.org>
Build-Depends:
debhelper (>= 10),
debhelper (>= 11),
default-jdk,
javahelper,
junit,
......@@ -22,9 +22,9 @@ Build-Depends:
libmail-java,
libservlet3.1-java,
maven-debian-helper (>= 1.4)
Standards-Version: 4.1.2
Vcs-Git: https://anonscm.debian.org/git/pkg-java/libquartz-java.git
Vcs-Browser: https://anonscm.debian.org/cgit/pkg-java/libquartz-java.git
Standards-Version: 4.2.1
Vcs-Git: https://salsa.debian.org/java-team/libquartz-java.git
Vcs-Browser: https://salsa.debian.org/java-team/libquartz-java
Homepage: http://quartz-scheduler.org
Package: libquartz-java
......
# Maven clean ignore rules - ignore some Maven dependencies and plugins
# during the clean phase of a Maven build
# Format of this file is:
# [group] [artifact] [type] [version] [classifier] [scope]
# where each element can be either
# - the exact string, for example org.apache for the group, or 3.1
# for the version. In this case, the element is simply matched
# and left as it is
# - * (the star character, alone). In this case, anything will
# match and be left as it is. For example, using * on the
# position of the artifact field will match any artifact id
# All elements much match before a rule can be applied
# Example rule: match jar with groupid= junit, artifactid= junit
# and version starting with 3., this dependency is then removed
# from the POM before mvn clean is called
# junit junit jar s/3\..*/3.x/
......@@ -2,3 +2,4 @@
# For example:
# maven.test.skip=true
maven.compiler.release=8
# Maven published rules - additional rules to publish, to help
# the packaging work of Debian maintainers using mh_make
# Format of this file is:
# [group] [artifact] [type] [version] [classifier] [scope]
# where each element can be either
# - the exact string, for example org.apache for the group, or 3.1
# for the version. In this case, the element is simply matched
# and left as it is
# - * (the star character, alone). In this case, anything will
# match and be left as it is. For example, using * on the
# position of the artifact field will match any artifact id
# - a regular expression of the form s/match/replace/
# in this case, elements that match are transformed using
# the regex rule.
# All elements much match before a rule can be applied
# Example rule: match jar with groupid= junit, artifactid= junit
# and version starting with 3., replacing the version with 3.x
# junit junit jar s/3\..*/3.x/