Questions tagged [qulice]

Qulice is a static analysis quality control instrument for Java projects. It combines a few static analysis tools and pre-configure them. You don't need to use and configure them individually any more.

6 questions
3
votes
1 answer

How to ignore or fix the duplicate classes warning?

I'm trying to use the Qulice code quality control tool. When I run qulice:check on my project, I get the following errors: [WARNING] Found duplicate and different classes in [junit:junit:4.8.2,org.mockito:mockito-all:1.9.5] : [WARNING] …
Glory to Russia
  • 17,289
  • 56
  • 182
  • 325
2
votes
0 answers

BracketsStructureCheck and Eclipse

I'm trying to follow the Qulice's rules "BracketsStructureCheck". These rules in particular say that closing bracket should be on a new line in case if method call spans over multiple lines. Like this: String text = String.format( "some text:…
Logrus
  • 163
  • 2
  • 9
1
vote
0 answers

How can I apply Qulice formatting rules?

In one of my previous projects we had spotless for code style. And it had goal spotlessApply (which changed all formatting issues). For current project we use Qulice. Do you know whether it has quliceApply? Or how can I fix formatting by running a…
Ramazan
  • 41
  • 3
1
vote
2 answers

Qulice - How to disable rule that requires package-info.java on the entire project?

I've setup my pom.xml to use Qulice: com.qulice qulice-maven-plugin 0.17.3
Jed Cua
  • 251
  • 2
  • 11
1
vote
2 answers

How to disable duplicate dependencies check in Qulice?

I'm trying to use the Qulice code quality control tool. In my pom.xml I have the following definition: com.qulice qulice-maven-plugin
Glory to Russia
  • 17,289
  • 56
  • 182
  • 325
0
votes
1 answer

Set custom findBugs rules, disable failsOnViolation using qulice-maven-plugin

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.…
Xelian
  • 16,680
  • 25
  • 99
  • 152