Skip to content

Commit 2b64b04

Browse files
committed
[RELEASE] iText 7 pdfSweep - 2.0.3
https://github.com/itext/i7j-pdfsweep/releases/tag/2.0.3 * release/2.0.3: [RELEASE] 2.0.3-SNAPSHOT -> 2.0.3 Add missing copyright headers Generalize support of basic annotations redaction Make helper methods static in PdfCleanUpFilter class; reformat code Make sure text is removed if it has degenerate rectangle but is still in redaction area Add some tests which demonstrate a NPE issue. Add .mailmap file [RELEASE] Update parent version Adding the iText repositories to the pom.xml [RELEASE] 2.0.2-SNAPSHOT -> 2.0.3-SNAPSHOT Add test for DEVSIX-2056
2 parents 2c081f9 + bd9d78f commit 2b64b04

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+791
-340
lines changed

.mailmap

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
2+
Alexander Chingarev <[email protected]> <[email protected]>
3+
Alexander Chingarev <[email protected]> <[email protected]>
4+
Alexander Chingarev <[email protected]> <[email protected]>
5+
6+
7+
8+
9+
10+
11+
Benoît Lagae <[email protected]> <benoit@iText-blagae>
12+
13+
14+
15+
16+
Bruno Lowagie <[email protected]> <iText@Catullus>
17+
18+
Dimitry Alexandrov <[email protected]> <[email protected]>
19+
20+
Dmitry Trusevich <dmitry.trusevich@duallab> <dmitry.trusevich@duallab>
21+
22+
23+
Ilya Idamkin <[email protected]> <ilya.idamkin@TeamCity>
24+
25+
26+
27+
28+
29+
iText Software <[email protected]> <teamcity.bot@TeamCity>
30+
31+
32+
33+
34+
35+
36+
37+
38+
39+
40+
41+
42+
43+
Michaël Demey <[email protected]> michael.demey <>
44+
45+
Michaël Demey <[email protected]> <michael.demey@TeamCity>
46+
47+
48+
49+
50+
Nadia Ivaniukovich <[email protected]> <[email protected]>
51+
Nadia Ivaniukovich <[email protected]> <[email protected]>
52+
53+
54+
55+
56+
57+
58+
Pavel Alay <[email protected]> pavel.alay <>
59+
60+
Pavel Alay <[email protected]> <pavel.alay@TeamCity>
61+
62+
63+
64+
65+
66+
67+
68+
69+
70+
71+
72+
73+
74+
75+
Veronika Lisovskaya <[email protected]> <veronika.lisovskaya@TeamCity>
76+
77+
Yanina Cheremisina <[email protected]> <[email protected]>
78+
Yulian Gaponenko <[email protected]> <duallab@DESKTOP-PG4L5J1>
79+
Yulian Gaponenko <[email protected]> <yulian.gaponenko@TeamCity>

pom.xml

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
<parent>
55
<groupId>com.itextpdf</groupId>
66
<artifactId>root</artifactId>
7-
<version>7.1.3</version>
7+
<version>7.1.5</version>
88
<relativePath/>
99
</parent>
1010
<artifactId>cleanup</artifactId>
11-
<version>2.0.2</version>
11+
<version>2.0.3</version>
1212
<name>pdfSweep</name>
1313
<url>http://itextpdf.com/</url>
1414
<properties>
@@ -26,6 +26,28 @@
2626
<name>Apache Development Snapshot Repository</name>
2727
<url>https://repository.apache.org/content/repositories/snapshots/</url>
2828
</repository>
29+
<repository>
30+
<releases>
31+
<enabled>false</enabled>
32+
</releases>
33+
<snapshots>
34+
<enabled>true</enabled>
35+
</snapshots>
36+
<id>itext-snapshot</id>
37+
<name>iText Repository - snapshots</name>
38+
<url>https://repo.itextsupport.com/snapshot</url>
39+
</repository>
40+
<repository>
41+
<releases>
42+
<enabled>true</enabled>
43+
</releases>
44+
<snapshots>
45+
<enabled>false</enabled>
46+
</snapshots>
47+
<id>itext-releases</id>
48+
<name>iText Repository - releases</name>
49+
<url>https://repo.itextsupport.com/releases</url>
50+
</repository>
2951
</repositories>
3052
<dependencies>
3153
<dependency>

src/main/java/com/itextpdf/pdfcleanup/FilteredImagesCache.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2018 iText Group NV
3+
Copyright (c) 1998-2019 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/pdfcleanup/LineDashPattern.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2018 iText Group NV
3+
Copyright (c) 1998-2019 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

src/main/java/com/itextpdf/pdfcleanup/PdfCleanUpEventListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2018 iText Group NV
3+
Copyright (c) 1998-2019 iText Group NV
44
Authors: iText Software.
55
66
This program is free software; you can redistribute it and/or modify

0 commit comments

Comments
 (0)