Gradle has support for PMD. You can find following example on internet: apply plugin: ‘pmd’ pmdMain { ruleSets = [ “basic”, “strings” ] } This […] Read More
Tag: Java
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
Simple scenario: deploy spring application to remote server which has https management interface. Easy task. When you have properly configured project with pom.xml then you […] Read More
I was chasing one very insidious bug. Tomcat installed as Windows service was not creating logs. The only log produced by Tomcat was stdout and […] Read More
I was searching for Apache Tomcat 7 Maven plugin. I found only messages that no such thing exists and that I have to use some […] Read More