Skip to content

Commits on Source 7

......@@ -30,7 +30,7 @@
<target name="load-ipp" depends="download-ipp">
<taskdef classpath="lib/ivyplusplus.jar" resource="com/zwitserloot/ivyplusplus/antlib.xml" uri="antlib:com.zwitserloot.ivyplusplus" />
<ivy:ensureippversion version="1.22" property="ivyplusplus.minimumAvailable" />
<ivy:ensureippversion version="1.26" property="ivyplusplus.minimumAvailable" />
</target>
<target name="redownload-ipp" unless="ivyplusplus.minimumAvailable">
......
......@@ -11,9 +11,9 @@
<dependency org="junit" name="junit" rev="4.12" conf="test -> default"/>
<dependency org="com.jcraft" name="jsch" rev="0.1.42" conf="build->default" />
<dependency org="projectlombok.org" name="jsch-ant-fixed" rev="0.1.45" conf="build" />
<dependency org="org.ow2.asm" name="asm" rev="7.0" conf="runtime, build -> default; contrib->sources" />
<dependency org="org.ow2.asm" name="asm-tree" rev="7.0" conf="runtime, build->default; contrib->sources" />
<dependency org="org.ow2.asm" name="asm-commons" rev="7.0" conf="runtime, build->default; contrib->sources" />
<dependency org="org.ow2.asm" name="asm" rev="7.1" conf="runtime, build -> default; contrib->sources" />
<dependency org="org.ow2.asm" name="asm-tree" rev="7.1" conf="runtime, build->default; contrib->sources" />
<dependency org="org.ow2.asm" name="asm-commons" rev="7.1" conf="runtime, build->default; contrib->sources" />
<dependency org="net.java.dev.jna" name="jna" rev="3.2.2" conf="runtimeInjector, build->master" />
</dependencies>
</ivy-module>
lombok-patcher (0.34-1) unstable; urgency=medium
* New upstream version 0.34.
* Switch to debhelper-compat = 12.
-- Markus Koschany <apo@debian.org> Sun, 29 Sep 2019 17:32:09 +0200
lombok-patcher (0.32-1) unstable; urgency=medium
* New upstream version 0.32.
......
......@@ -7,7 +7,7 @@ Uploaders:
Build-Depends:
ant,
ant-optional,
debhelper (>= 11),
debhelper-compat (= 12),
default-jdk,
ivyplusplus,
javahelper,
......
......@@ -3,7 +3,7 @@ Upstream-Name: lombok.patcher
Source: https://github.com/rzwitserloot/lombok.patcher
Files: *
Copyright: 2009-2015 The Project Lombok Authors.
Copyright: 2009-2019 The Project Lombok Authors.
License: Expat
Files: debian/*
......
dist/lombok.patcher.jar
dist/lombok.injector-0.32.jar
dist/lombok.injector-0.34.jar
......@@ -26,7 +26,7 @@ package lombok.patcher;
*/
public class Version {
// ** CAREFUL ** - this class must always compile with 0 dependencies (it must not refer to any other sources or libraries).
private static final String VERSION = "0.32";
private static final String VERSION = "0.34";
private Version() {
//Prevent instantiation
......