Skip to content

Commit 73a15ad

Browse files
committed
Move jackson version property to root and exclude clipper from SQ analyze
* Jackson version property was moved to root.xml to get all dependencies which duplicated in android-conversion in one pom.xml
1 parent 9d53a68 commit 73a15ad

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

commons/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
<url>https://itextpdf.com/</url>
1515

1616
<properties>
17-
<jackson.core.version>2.17.0</jackson.core.version>
1817
<sonar.coverage.exclusions>**/com/itextpdf/commons/bouncycastle/**</sonar.coverage.exclusions>
1918
</properties>
2019

kernel/pom.xml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@
1414
<url>https://itextpdf.com/</url>
1515

1616
<properties>
17-
<sonar.exclusions>**/com/itextpdf/kernel/xmp/**</sonar.exclusions>
17+
<sonar.exclusions>
18+
**/com/itextpdf/kernel/xmp/**,
19+
**com/itextpdf/kernel/pdf/canvas/parser/clipper/**
20+
</sonar.exclusions>
1821
</properties>
1922

2023
<dependencies>

pdftest/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<dependency>
2525
<groupId>com.fasterxml.jackson.core</groupId>
2626
<artifactId>jackson-databind</artifactId>
27-
<version>2.17.0</version>
27+
<version>${jackson.core.version}</version>
2828
</dependency>
2929
</dependencies>
3030
</dependencyManagement>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@
9595
<junit.platform.version>1.10.2</junit.platform.version>
9696
<junitparams.version>1.0.4</junitparams.version>
9797
<logback.version>1.3.14</logback.version>
98+
<jackson.core.version>2.17.0</jackson.core.version>
9899
<maven.compiler.source>1.8</maven.compiler.source>
99100
<maven.compiler.target>1.8</maven.compiler.target>
100101
<maven.jar.version>3.1.0</maven.jar.version>

0 commit comments

Comments
 (0)