Red 8085
This commit is contained in:
parent
368a75e985
commit
88855de2da
@ -9,12 +9,13 @@
|
|||||||
</description>
|
</description>
|
||||||
|
|
||||||
<rule ref="category/java/errorprone.xml">
|
<rule ref="category/java/errorprone.xml">
|
||||||
<exclude name="DataflowAnomalyAnalysis"/>
|
|
||||||
<exclude name="MissingSerialVersionUID"/>
|
<exclude name="MissingSerialVersionUID"/>
|
||||||
<exclude name="NullAssignment"/>
|
|
||||||
<exclude name="AvoidLiteralsInIfCondition"/>
|
<exclude name="AvoidLiteralsInIfCondition"/>
|
||||||
<exclude name="AvoidDuplicateLiterals"/>
|
<exclude name="AvoidDuplicateLiterals"/>
|
||||||
<exclude name="AvoidFieldNameMatchingMethodName"/>
|
<exclude name="NullAssignment"/>
|
||||||
|
<exclude name="AssignmentInOperand"/>
|
||||||
|
<exclude name="BeanMembersShouldSerialize"/>
|
||||||
</rule>
|
</rule>
|
||||||
|
|
||||||
</ruleset>
|
</ruleset>
|
||||||
|
|
||||||
|
|||||||
@ -10,14 +10,14 @@
|
|||||||
|
|
||||||
|
|
||||||
<rule ref="category/java/errorprone.xml">
|
<rule ref="category/java/errorprone.xml">
|
||||||
<exclude name="DataflowAnomalyAnalysis"/>
|
|
||||||
<exclude name="MissingSerialVersionUID"/>
|
<exclude name="MissingSerialVersionUID"/>
|
||||||
<exclude name="NullAssignment"/>
|
|
||||||
<exclude name="AvoidLiteralsInIfCondition"/>
|
<exclude name="AvoidLiteralsInIfCondition"/>
|
||||||
<exclude name="AvoidDuplicateLiterals"/>
|
<exclude name="AvoidDuplicateLiterals"/>
|
||||||
<exclude name="AvoidFieldNameMatchingMethodName"/>
|
<exclude name="AvoidFieldNameMatchingMethodName"/>
|
||||||
<exclude name="AvoidFieldNameMatchingTypeName"/>
|
<exclude name="NullAssignment"/>
|
||||||
|
<exclude name="AssignmentInOperand"/>
|
||||||
<exclude name="TestClassWithoutTestCases"/>
|
<exclude name="TestClassWithoutTestCases"/>
|
||||||
|
<exclude name="BeanMembersShouldSerialize"/>
|
||||||
</rule>
|
</rule>
|
||||||
|
|
||||||
</ruleset>
|
</ruleset>
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id("com.knecon.fforesight.java-conventions")
|
id("com.knecon.fforesight.java-conventions")
|
||||||
id("io.freefair.lombok") version "8.2.2"
|
id("io.freefair.lombok") version "8.4"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "layoutparser-service-internal-api"
|
description = "layoutparser-service-internal-api"
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
plugins {
|
plugins {
|
||||||
id("com.knecon.fforesight.java-conventions")
|
id("com.knecon.fforesight.java-conventions")
|
||||||
id("io.freefair.lombok") version "8.2.2"
|
id("io.freefair.lombok") version "8.4"
|
||||||
}
|
}
|
||||||
|
|
||||||
description = "layoutparser-service-processor"
|
description = "layoutparser-service-processor"
|
||||||
|
|||||||
@ -12,6 +12,7 @@ import lombok.Setter;
|
|||||||
|
|
||||||
@Setter
|
@Setter
|
||||||
@EqualsAndHashCode
|
@EqualsAndHashCode
|
||||||
|
@SuppressWarnings("PMD.AvoidFieldNameMatchingMethodName")
|
||||||
public class Boundary implements Comparable<Boundary> {
|
public class Boundary implements Comparable<Boundary> {
|
||||||
|
|
||||||
private int start;
|
private int start;
|
||||||
|
|||||||
@ -6,7 +6,7 @@ plugins {
|
|||||||
id("org.springframework.boot") version "3.1.5"
|
id("org.springframework.boot") version "3.1.5"
|
||||||
id("io.spring.dependency-management") version "1.1.3"
|
id("io.spring.dependency-management") version "1.1.3"
|
||||||
id("org.sonarqube") version "4.3.0.3225"
|
id("org.sonarqube") version "4.3.0.3225"
|
||||||
id("io.freefair.lombok") version "8.2.2"
|
id("io.freefair.lombok") version "8.4"
|
||||||
// id("org.graalvm.buildtools.native") version "0.9.23"
|
// id("org.graalvm.buildtools.native") version "0.9.23"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -148,6 +148,7 @@ public class HeadlinesGoldStandardIntegrationTest {
|
|||||||
@EqualsAndHashCode
|
@EqualsAndHashCode
|
||||||
@AllArgsConstructor
|
@AllArgsConstructor
|
||||||
@ToString
|
@ToString
|
||||||
|
@SuppressWarnings("PMD.AvoidFieldNameMatchingTypeName")
|
||||||
private class Headline {
|
private class Headline {
|
||||||
|
|
||||||
private int page;
|
private int page;
|
||||||
|
|||||||
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user