Skip to content

Commit 4e113bf

Browse files
committed
[RELEASE] iText 7 RUPS - 7.1.14
https://github.com/itext/i7j-rups/releases/tag/7.1.14 * release/7.1.14: [RELEASE] RUPS 7.1.14 Remove explicit BouncyCastle reference Update CONTRIBUTING.md with latest information and links Update BouncyCastle version to 1.66 Remove package-info.java [AFTER RELEASE] RUPS 7.1.13
2 parents f1e6f92 + d354c08 commit 4e113bf

File tree

15 files changed

+14
-44
lines changed

15 files changed

+14
-44
lines changed

CONTRIBUTING.md

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ Before you submit your pull request consider the following guidelines:
6868
* Verify that your proposed change hasn't already been addressed in the develop branch.
6969
* Don't send a separate pull request for every single file you change.
7070
* Please sign the [iText Contributor License Agreement (iCLA)](#cla) before sending pull
71-
requests for any change of more than 20 significant lines of code (we're not counting curly braces and other syntactical sugar).
72-
We cannot accept code without this agreement.
71+
requests. We cannot accept code without this agreement.
7372
* Fork the iText repository on GitHub.
7473
* Clone your iText fork to your local machine.
7574
* Make your changes, **including appropriate test cases**.
@@ -100,8 +99,7 @@ To ensure consistency throughout the source code, keep these rules in mind as yo
10099

101100
* We develop in Java first, and then port to .NET, so code submissions in Java are preferred.
102101
Nevertheless this shouldn't stop you from making a good pull request to the .NET port.
103-
* All Java code **must** be Java 7. Sorry, no lambda expressions or other Java 8 language features.
104-
* All features or bug fixes **must be tested** by one or more [unit tests][unit-testing].
102+
* All features or bug fixes **must be tested** by one or more unit tests.
105103
* All public API methods **must be documented** with JavaDoc. To see how we document our APIs, please check
106104
out the existing [javadocs][javadocs].
107105
* We follow the rules contained in
@@ -151,8 +149,7 @@ reference JIRA or GitHub issues that this commit **Closes**.
151149

152150
## <a name="cla">Signing the iCLA</a>
153151

154-
Please sign the **iText Contributor License Agreement (iCLA)** before sending pull requests. For any larger code
155-
changes (more than 20 lines of significant code) to be accepted, the iCLA must be signed. It's a quick process, we promise!
152+
Please sign the [**iText Contributor License Agreement (iCLA)**][cla] before sending pull requests. For any code changes to be accepted, the iCLA must be signed. It's a quick process, we promise!
156153

157154
We'll need you to [(digitally) sign and then email, fax or mail the form][cla].
158155

@@ -165,18 +162,17 @@ We use the [Stack Exchange][stackoverflow] network for free support and [GitHub]
165162
* StackExchange: [http://stackexchange.com/legal](http://stackexchange.com/legal)
166163
* Github: [https://help.github.com/articles/github-terms-of-service/](https://help.github.com/articles/github-terms-of-service/)
167164

168-
[cla]: http://itextpdf.com/policy
165+
[cla]: https://itextpdf.com/en/how-buy/legal/itext-contributor-license-agreement
169166
[coc]: CODE_OF_CONDUCT.md
170-
[github]: https://github.com/itext/itext7
171-
[java-style-guide]: http://www.oracle.com/technetwork/java/codeconvtoc-136057.html
172-
[javadocs]: http://itextpdf.com/api
173-
[pull]: https://github.com/itext/itext7/pulls
167+
[github]: https://github.com/itext/i7j-rups
168+
[java-style-guide]: https://www.oracle.com/technetwork/java/codeconvtoc-136057.html
169+
[javadocs]: https://itextpdf.com/api
170+
[pull]: https://github.com/itext/i7j-rups/pulls
174171
[sscce]: http://sscce.org/
175-
[stackoverflow]: http://stackoverflow.com/questions/tagged/itext7
176-
[good-questions]: http://stackoverflow.com/help/how-to-ask
177-
[mcve]: http://stackoverflow.com/help/mcve
178-
[support]: http://itextpdf.com/support
179-
[unit-testing]: http://junit.org/
172+
[stackoverflow]: https://stackoverflow.com/questions/tagged/itext7
173+
[good-questions]: https://stackoverflow.com/help/how-to-ask
174+
[mcve]: https://stackoverflow.com/help/mcve
175+
[support]: https://itextpdf.com/support
180176
[git-commit]: https://chris.beams.io/posts/git-commit/
181177
[git-commit-separate]: https://chris.beams.io/posts/git-commit/#separate
182178
[git-commit-limit-50]: https://chris.beams.io/posts/git-commit/#limit-50

pom.xml

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<parent>
66
<groupId>com.itextpdf</groupId>
77
<artifactId>root</artifactId>
8-
<version>7.1.13</version>
9-
<relativePath/>
8+
<version>7.1.14</version>
9+
<relativePath />
1010
</parent>
1111

1212
<artifactId>itext-rups</artifactId>
@@ -52,7 +52,6 @@
5252

5353
<properties>
5454
<assembly-plugin.version>3.2.0</assembly-plugin.version>
55-
<bouncycastle.version>1.64</bouncycastle.version>
5655
<dom4j.version>2.1.3</dom4j.version>
5756
<itext.version>${project.parent.version}</itext.version>
5857
<launch4j.version>1.7.25</launch4j.version>
@@ -82,18 +81,6 @@
8281
<artifactId>kernel</artifactId>
8382
<version>${itext.version}</version>
8483
</dependency>
85-
<dependency>
86-
<groupId>org.bouncycastle</groupId>
87-
<artifactId>bcpkix-jdk15on</artifactId>
88-
<version>${bouncycastle.version}</version>
89-
<optional>true</optional>
90-
</dependency>
91-
<dependency>
92-
<groupId>org.bouncycastle</groupId>
93-
<artifactId>bcprov-jdk15on</artifactId>
94-
<version>${bouncycastle.version}</version>
95-
<optional>true</optional>
96-
</dependency>
9784
<dependency>
9885
<groupId>org.dom4j</groupId>
9986
<artifactId>dom4j</artifactId>

src/main/java/com/itextpdf/rups/controller/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/event/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/io/filters/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/io/listeners/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/io/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/model/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/view/contextmenu/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/view/icons/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/view/itext/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/view/itext/treenodes/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/view/models/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

src/main/java/com/itextpdf/rups/view/package-info.java

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)