Golang – Debug a unit test manually

I ran into a tricky issue where all unit tests passed when executed from the IDE, but one test consistently failed when run from the command line. I won’t go into the details of the root cause (it was related to how the IDE handles the /dev/tty device), but I will provide instructions on how to manually debug a failing test.  …

Автоматическое обновление версий maven-проектов

Я сопровождаю многомодульный java проект. При обновлении версии родительского модуля, я каждый раз, стыдно признаться, открывал файл pom.xml каждого дочернего модуля и вручную изменял номер версии родителя. Номер версии в ссылках на родительский проект опустить нельзя – произойдет ошибка. Указывается номер версии в pom-файле:

 …