Skip to content
Commits on Source (3)
javatools (0.65) unstable; urgency=medium
* Team upload.
[ Emmanuel Bourg ]
* Fixed the UnsupportedClassVersionError when using jarwrapper with Java < 10
(Closes: #909040)
* Standards-Version updated to 4.2.1
[ Niels Thykier ]
* Rewrite jh_linkjars, jh_installibs, jh_exec, jh_installjavadoc
and jh_classpath using Debhelper's Dh_Lib
* javatools can be built without (fake)root
* Let debhelper handle auto-generated orbitdeps cache file
* Avoid some fork+execs for trivial things
-- Emmanuel Bourg <ebourg@apache.org> Tue, 18 Sep 2018 01:04:20 +0200
javatools (0.64) unstable; urgency=medium
* Team upload.
......
......@@ -13,7 +13,7 @@ Build-Depends:
markdown,
perl
Rules-Requires-Root: no
Standards-Version: 4.1.4
Standards-Version: 4.2.1
Vcs-Git: https://salsa.debian.org/java-team/javatools.git
Vcs-Browser: https://salsa.debian.org/java-team/javatools
......
......@@ -14,7 +14,7 @@ jh_lib.sh: jh_lib.sh.in
override_dh_auto_build: jh_lib.sh
mkdir -p target/classes
javac -d target/classes src/main/java/org/debian/javatools/CheckProperty.java
javac -d target/classes -source 7 -target 7 src/main/java/org/debian/javatools/CheckProperty.java
jar -cvf target/javatools.jar -C target/classes/ .
mkdir tmp tmp.jarwrapper
......