Commit 3099fe9f authored by Perwaiz Ali's avatar Perwaiz Ali

.git-ci.yml changes

parent f4c1b012
Pipeline #2230 failed with stages
in 2 minutes and 33 seconds
<?xml version="1.0"?>
<ruleset name="Custom Rules"
xmlns="http://pmd.sourceforge.net/ruleset/2.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 https://pmd.sourceforge.io/ruleset_2_0_0.xsd">
<description>
My custom rules
</description>
<rule ref="category/java/errorprone.xml/BeanMembersShouldSerialize" >
<properties>
<property name="ignoredAnnotations" value="Autowired|GetMapping|Mock|InjectMocks" />
<property name="prefix" value="" />
</properties>
</rule>
<rule ref="category/java/bestpractices.xml/SystemPrintln" />
</ruleset>
\ No newline at end of file
......@@ -13,7 +13,7 @@ public class Controller {
@RequestMapping("/test")
public String test() {
System.out.println("hello ");
return "Demno ";
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment