Re: Proper way to force debug/verbose in maven-debian-helper

2018-03-02 Thread Emmanuel Bourg
On 02/03/2018 01:33, Tiago Daitx wrote: > Could someone please point me to the right way to achieve this? Hi Tiago, You just have to override dh_auto_build in debian/rules and pass the -X parameter. It looks like this: override_dh_auto_build: dh_auto_build -- -X package -DskipTests (an

Proper way to force debug/verbose in maven-debian-helper

2018-03-01 Thread Tiago Daitx
Hi, I have been debugging a few build errors in packages that rely on maven-debian-helper, but so far I haven't found any documentation on how to actually enable the '-X' or '-e' flags - or pass arguments to maven for that matter - from the debian/rules file. Could someone please point me to the