Skip to content

Commit db3cb38

Browse files
committed
[RELEASE] iText 9.3.0
2 parents 678f4a6 + 033c3be commit db3cb38

File tree

829 files changed

+470894
-4203
lines changed

Some content is hidden

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

829 files changed

+470894
-4203
lines changed

NOTICE.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
This software uses third-party libraries under the licenses in the following files:
2-
- [styled-xml-parser/NOTICE.txt](styled-xml-parser/NOTICE.txt)
3-
- [kernel/NOTICE.txt](kernel/NOTICE.txt)
4-
- [io/NOTICE.txt](io/NOTICE.txt)
2+
- [barcodes/NOTICE.txt](barcodes/NOTICE.txt)
53
- [commons/NOTICE.txt](commons/NOTICE.txt)
4+
- [io/NOTICE.txt](io/NOTICE.txt)
5+
- [kernel/NOTICE.txt](kernel/NOTICE.txt)
66
- [layout/NOTICE.txt](layout/NOTICE.txt)
7+
- [styled-xml-parser/NOTICE.txt](styled-xml-parser/NOTICE.txt)

README.md

Lines changed: 58 additions & 58 deletions
Large diffs are not rendered by default.

barcodes/NOTICE.txt

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This software uses the following third-party libraries under the following licenses:
2+
| ZXing | Apache-2.0 | Code is embedded under com.itextpdf.barcodes.qrcode package.
3+
4+
5+
6+
7+
------------------------------------------------------------------------------------------------------------------------
8+
9+
10+
ZXing full license agreement text is below:
11+
12+
Copyright 2007 ZXing authors
13+
14+
Licensed under the Apache License, Version 2.0 (the "License");
15+
you may not use this file except in compliance with the License.
16+
You may obtain a copy of the License at
17+
18+
http://www.apache.org/licenses/LICENSE-2.0
19+
20+
Unless required by applicable law or agreed to in writing, software
21+
distributed under the License is distributed on an "AS IS" BASIS,
22+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
23+
See the License for the specific language governing permissions and
24+
limitations under the License.

barcodes/pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>com.itextpdf</groupId>
77
<artifactId>root</artifactId>
8-
<version>9.2.0</version>
8+
<version>9.3.0</version>
99
</parent>
1010

1111
<artifactId>barcodes</artifactId>
@@ -27,6 +27,17 @@
2727
</dependency>
2828
</dependencies>
2929

30+
<build>
31+
<resources>
32+
<resource>
33+
<directory>${project.basedir}</directory>
34+
<includes>
35+
<include>NOTICE.txt</include>
36+
</includes>
37+
</resource>
38+
</resources>
39+
</build>
40+
3041
<profiles>
3142
<profile>
3243
<id>with-sharpen</id>

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/BitArray.java

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
11
/*
2-
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2025 Apryse Group NV
4-
Authors: Apryse Software.
5-
6-
This program is offered under a commercial and under the AGPL license.
7-
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
8-
9-
AGPL licensing:
10-
This program is free software: you can redistribute it and/or modify
11-
it under the terms of the GNU Affero General Public License as published by
12-
the Free Software Foundation, either version 3 of the License, or
13-
(at your option) any later version.
14-
15-
This program is distributed in the hope that it will be useful,
16-
but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
GNU Affero General Public License for more details.
19-
20-
You should have received a copy of the GNU Affero General Public License
21-
along with this program. If not, see <https://www.gnu.org/licenses/>.
2+
* Copyright 2007 ZXing authors
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
2215
*/
2316
package com.itextpdf.barcodes.qrcode;
2417

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/BitMatrix.java

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
11
/*
2-
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2025 Apryse Group NV
4-
Authors: Apryse Software.
5-
6-
This program is offered under a commercial and under the AGPL license.
7-
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
8-
9-
AGPL licensing:
10-
This program is free software: you can redistribute it and/or modify
11-
it under the terms of the GNU Affero General Public License as published by
12-
the Free Software Foundation, either version 3 of the License, or
13-
(at your option) any later version.
14-
15-
This program is distributed in the hope that it will be useful,
16-
but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
GNU Affero General Public License for more details.
19-
20-
You should have received a copy of the GNU Affero General Public License
21-
along with this program. If not, see <https://www.gnu.org/licenses/>.
2+
* Copyright 2007 ZXing authors
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
2215
*/
2316
package com.itextpdf.barcodes.qrcode;
2417

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/BitVector.java

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
11
/*
2-
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2025 Apryse Group NV
4-
Authors: Apryse Software.
5-
6-
This program is offered under a commercial and under the AGPL license.
7-
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
8-
9-
AGPL licensing:
10-
This program is free software: you can redistribute it and/or modify
11-
it under the terms of the GNU Affero General Public License as published by
12-
the Free Software Foundation, either version 3 of the License, or
13-
(at your option) any later version.
14-
15-
This program is distributed in the hope that it will be useful,
16-
but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
GNU Affero General Public License for more details.
19-
20-
You should have received a copy of the GNU Affero General Public License
21-
along with this program. If not, see <https://www.gnu.org/licenses/>.
2+
* Copyright 2007 ZXing authors
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
2215
*/
2316
package com.itextpdf.barcodes.qrcode;
2417

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/BlockPair.java

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
11
/*
2-
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2025 Apryse Group NV
4-
Authors: Apryse Software.
5-
6-
This program is offered under a commercial and under the AGPL license.
7-
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
8-
9-
AGPL licensing:
10-
This program is free software: you can redistribute it and/or modify
11-
it under the terms of the GNU Affero General Public License as published by
12-
the Free Software Foundation, either version 3 of the License, or
13-
(at your option) any later version.
14-
15-
This program is distributed in the hope that it will be useful,
16-
but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
GNU Affero General Public License for more details.
19-
20-
You should have received a copy of the GNU Affero General Public License
21-
along with this program. If not, see <https://www.gnu.org/licenses/>.
2+
* Copyright 2007 ZXing authors
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
2215
*/
2316
package com.itextpdf.barcodes.qrcode;
2417

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/ByteArray.java

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
11
/*
2-
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2025 Apryse Group NV
4-
Authors: Apryse Software.
5-
6-
This program is offered under a commercial and under the AGPL license.
7-
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
8-
9-
AGPL licensing:
10-
This program is free software: you can redistribute it and/or modify
11-
it under the terms of the GNU Affero General Public License as published by
12-
the Free Software Foundation, either version 3 of the License, or
13-
(at your option) any later version.
14-
15-
This program is distributed in the hope that it will be useful,
16-
but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
GNU Affero General Public License for more details.
19-
20-
You should have received a copy of the GNU Affero General Public License
21-
along with this program. If not, see <https://www.gnu.org/licenses/>.
2+
* Copyright 2007 ZXing authors
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
2215
*/
2316
package com.itextpdf.barcodes.qrcode;
2417

barcodes/src/main/java/com/itextpdf/barcodes/qrcode/ByteMatrix.java

Lines changed: 13 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,17 @@
11
/*
2-
This file is part of the iText (R) project.
3-
Copyright (c) 1998-2025 Apryse Group NV
4-
Authors: Apryse Software.
5-
6-
This program is offered under a commercial and under the AGPL license.
7-
For commercial licensing, contact us at https://itextpdf.com/sales. For AGPL licensing, see below.
8-
9-
AGPL licensing:
10-
This program is free software: you can redistribute it and/or modify
11-
it under the terms of the GNU Affero General Public License as published by
12-
the Free Software Foundation, either version 3 of the License, or
13-
(at your option) any later version.
14-
15-
This program is distributed in the hope that it will be useful,
16-
but WITHOUT ANY WARRANTY; without even the implied warranty of
17-
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18-
GNU Affero General Public License for more details.
19-
20-
You should have received a copy of the GNU Affero General Public License
21-
along with this program. If not, see <https://www.gnu.org/licenses/>.
2+
* Copyright 2007 ZXing authors
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
2215
*/
2316
package com.itextpdf.barcodes.qrcode;
2417

0 commit comments

Comments
 (0)