I want to use qulice-maven-plugin and I do not want to use the default findBugs rules but to set my custom once. Is that possible? - Also, I do not want qulice-maven-plugin to fail on checkstyle violations, but I do no want to disable the plugin. How to change the default qulice-maven-plugin, checkstyle configuration?
<build>
<plugins>
<plugin>
<groupId>com.qulice</groupId>
<artifactId>qulice-maven-plugin</artifactId>
<version>0.16.4</version>
<configuration>
<license>file:${basedir}/LICENSE.txt</license>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>