Gradle has support for PMD. You can find following example on internet: apply plugin: ‘pmd’ pmdMain { ruleSets = [ “basic”, “strings” ] } This […] Read More
Category: Software engineering
After upgrade of Linux distribution Courier stopped to accept emails delivered over TLS or SSL. There was just nice error message in the log file: […] Read More
One very cool feature of Python 3.x is instant web server. Type the following command on command line: The Python will start a simple web […] Read More
First of all: do not use daemon mode for debugging. IntelliJ Idea is automatically spawning daemon when you start any Gradle task. You have to […] Read More
IntelliJ Idea has neat feature – Terminal Window. Unfortunately on Windows it’s set just to old school cmd. Good news is that it’s possible to […] Read More