Skip to content

Commit 061268e

Browse files
authored
build(deps): Add bouncycastle jdk18on version (#65)
* Add bouncycastle jdk18on version * PR remarks
1 parent d982d32 commit 061268e

File tree

5 files changed

+14
-18
lines changed

5 files changed

+14
-18
lines changed

.github/ISSUE_TEMPLATE/adoption_request.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ assignees: ''
1111

1212
_Thank you for wanting to contribute to the project! We are very happy to see the functionalities of the EDC being extended. Providing this open-source is a great opportunity for others with similar requirements and to avoid additional work._
1313

14-
_For any details about the guidelines for submitting features, please take a look at the [contribution categories](https://github.com/eclipse-dataspaceconnector/DataSpaceConnector/blob/main/contribution_categories.md)._
14+
_For any details about the guidelines for submitting features, please take a look at the [contribution categories](https://github.com/eclipse-edc/Connector/blob/main/contribution_categories.md)._
1515

1616

1717
## General information
1818

1919
Please provide some information about your project or code contribution.
2020

21-
_If you choose to be referenced as a "friend", these will be added to the [known friends list](https://github.com/eclipse-dataspaceconnector/DataSpaceConnector/blob/main/known_friends.md)._
21+
_If you choose to be referenced as a "friend", these will be added to the [known friends list](https://github.com/eclipse-edc/Connector/blob/main/known_friends.md)._
2222
_If you choose to add your feature as a core EDC component, links to your current code and correlated issues, discussions, and pull requests are of great importance._
2323

2424
| Title | Description | Contact | Links

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
blank_issues_enabled: false
33
contact_links:
44
- name: Open up a blank issue
5-
url: https://github.com/eclipse-dataspaceconnector/DataSpaceConnector/issues/new
5+
url: https://github.com/eclipse-edc/GradlePlugins/issues/new
66
about: Don’t see your issue here? Open up a blank one
77
- name: Ask a question or get support
8-
url: https://github.com/eclipse-dataspaceconnector/DataSpaceConnector/discussions/categories/q-a
9-
about: Ask a question or request support for using the Eclipse Dataspace Connector
8+
url: https://github.com/eclipse-edc/Connector/discussions/categories/q-a
9+
about: Ask a question or request support for using the Eclipse Dataspace Components
1010
- name: Take a look at the documentation
11-
url: https://github.com/eclipse-dataspaceconnector/DataSpaceConnector/tree/main/docs
11+
url: https://github.com/eclipse-edc/docs
1212
about: Browse the documentation for more information

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ assignees: ''
99

1010
# Feature Request
1111

12-
_If you are missing a feature or have an idea how to improve this project that should first be discussed, please feel free to open up a [discussion](https://github.com/eclipse-dataspaceconnector/DataSpaceConnector/discussions/categories/ideas)._
12+
_If you are missing a feature or have an idea how to improve this project that should first be discussed, please feel free to open up a [discussion](https://github.com/eclipse-edc/Connector/discussions/categories/ideas)._
1313

1414
## Which Areas Would Be Affected?
1515
_e.g., DPF, CI, build, transfer, etc._
@@ -19,11 +19,3 @@ _Are there any requirements?_
1919

2020
## Solution Proposal
2121
_If possible, provide a (brief!) solution proposal._
22-
23-
## Type of Issue
24-
_i.e., new feature, improvement, cleanup, etc._
25-
26-
## Checklist
27-
28-
- [ ] assigned appropriate label?
29-
- [x] **Do NOT select a milestone or an assignee!**

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ Closes # <-- _insert Issue number if one exists_
2222
- [ ] documented public classes/methods?
2323
- [ ] added/updated relevant documentation?
2424
- [ ] assigned appropriate label? (exclude from changelog with label `no-changelog`)
25-
- [ ] formatted title correctly? (_take a look at the [CONTRIBUTING](https://github.com/eclipse-dataspaceconnector/DataSpaceConnector/blob/main/CONTRIBUTING.md#submit-a-pull-request) and [styleguide](https://github.com/eclipse-dataspaceconnector/DataSpaceConnector/blob/main/styleguide.md) for details_)
25+
- [ ] formatted title correctly? (_take a look at the [CONTRIBUTING](https://github.com/eclipse-edc/Connector/blob/main/CONTRIBUTING.md#submit-a-pull-request) and [Etiquette for pull requests](https://github.com/eclipse-edc/Connector/blob/main/pr_etiquette.md) for details_)

gradle/libs.versions.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ assertj = "3.22.0"
88
atomikos = "5.0.8"
99
awaitility = "4.2.0"
1010
aws = "2.17.288"
11-
bouncyCastle = "1.70"
11+
bouncyCastle-jdk18on = "1.72"
12+
bouncyCastle = "1.70" # this bouncycastle version is deprecated in favor of the jdk18on
1213
cloudEvents = "2.3.0"
1314
failsafe = "3.2.4"
1415
gatling = "3.7.5"
@@ -41,6 +42,9 @@ slf4j = "2.0.0-alpha7"
4142
# Core EDC dependencies
4243
assertj = { module = "org.assertj:assertj-core", version.ref = "assertj" }
4344
awaitility = { module = "org.awaitility:awaitility", version.ref = "awaitility" }
45+
bouncyCastle-bcprovJdk18on = { module = "org.bouncycastle:bcprov-jdk18on", version.ref = "bouncyCastle-jdk18on" }
46+
bouncyCastle-bcpkixJdk18on = { module = "org.bouncycastle:bcpkix-jdk18on", version.ref = "bouncyCastle-jdk18on" }
47+
# these two bouncycastle versions are deprecated in favor of the jdk18on
4448
bouncyCastle-bcprov = { module = "org.bouncycastle:bcprov-jdk15on", version.ref = "bouncyCastle" }
4549
bouncyCastle-bcpkix = { module = "org.bouncycastle:bcpkix-jdk15on", version.ref = "bouncyCastle" }
4650
cloudEvents = { module = "io.cloudevents:cloudevents-http-basic", version.ref = "cloudEvents" }
@@ -119,4 +123,4 @@ jackson = ["jackson.core", "jackson.annotations", "jackson.databind", "jackson-d
119123
jupiter = ["junit-jupiter-api", "junit-jupiter-params"]
120124

121125
[plugins]
122-
# nothing here yet
126+
# nothing here yet

0 commit comments

Comments
 (0)