diff options
author | Matthias Sohn <matthias.sohn@sap.com> | 2023-04-14 18:12:42 +0200 |
---|---|---|
committer | Matthias Sohn <matthias.sohn@sap.com> | 2023-04-21 23:37:35 +0200 |
commit | bf201be0beb284707db0f500e5850be56f966b15 (patch) | |
tree | 8fc95002b4a97f7dbb4ec3c6a058bf44268aa32c /org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.19.target | |
parent | 4117bf9d747fb7bdb9fb36907207777a8a398104 (diff) | |
download | jgit-bf201be0beb284707db0f500e5850be56f966b15.tar.gz jgit-bf201be0beb284707db0f500e5850be56f966b15.zip |
Use bouncycastle libraries directly from Maven Central
and update
- org.bouncycastle:bcpg-jdk18on to 1.72.2
Bug: 581767
Change-Id: Id213e84d56c171c98b1919a7044e2779a3d777df
Diffstat (limited to 'org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.19.target')
-rw-r--r-- | org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.19.target | 38 |
1 files changed, 29 insertions, 9 deletions
diff --git a/org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.19.target b/org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.19.target index e570bf9a54..52839196a7 100644 --- a/org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.19.target +++ b/org.eclipse.jgit.packaging/org.eclipse.jgit.target/jgit-4.19.target @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <?pde?> <!-- generated with https://github.com/eclipse-cbi/targetplatform-dsl --> -<target name="jgit-4.19-staging" sequenceNumber="1677748416"> +<target name="jgit-4.19-staging" sequenceNumber="1681685282"> <locations> <location includeMode="slicer" includeAllPlatforms="false" includeSource="true" includeConfigurePhase="true" type="InstallableUnit"> <unit id="org.eclipse.jetty.http" version="10.0.13"/> @@ -55,14 +55,6 @@ <unit id="org.apache.sshd.sftp.source" version="2.9.2.v20221117-1942"/> <unit id="org.assertj" version="3.20.2.v20210706-1104"/> <unit id="org.assertj.source" version="3.20.2.v20210706-1104"/> - <unit id="org.bouncycastle.bcpg" version="1.72.0.v20221013-1810"/> - <unit id="org.bouncycastle.bcpg.source" version="1.72.0.v20221013-1810"/> - <unit id="org.bouncycastle.bcpkix" version="1.72.0.v20221013-1810"/> - <unit id="org.bouncycastle.bcpkix.source" version="1.72.0.v20221013-1810"/> - <unit id="org.bouncycastle.bcprov" version="1.72.0.v20221013-1810"/> - <unit id="org.bouncycastle.bcprov.source" version="1.72.0.v20221013-1810"/> - <unit id="org.bouncycastle.bcutil" version="1.72.0.v20221013-1810"/> - <unit id="org.bouncycastle.bcutil.source" version="1.72.0.v20221013-1810"/> <unit id="org.hamcrest" version="2.2.0.v20210711-0821"/> <unit id="org.hamcrest.source" version="2.2.0.v20210711-0821"/> <unit id="org.hamcrest.core" version="1.3.0.v20180420-1519"/> @@ -89,5 +81,33 @@ <unit id="org.eclipse.osgi" version="0.0.0"/> <repository location="https://download.eclipse.org/releases/2021-03/"/> </location> + <location includeDependencyDepth="none" includeDependencyScopes="compile" includeSource="true" missingManifest="error" type="Maven" label="bouncycastle"> + <dependencies> + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpg-jdk18on</artifactId> + <version>1.72.2</version> + <type>jar</type> + </dependency> + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcprov-jdk18on</artifactId> + <version>1.72</version> + <type>jar</type> + </dependency> + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk18on</artifactId> + <version>1.72</version> + <type>jar</type> + </dependency> + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcutil-jdk18on</artifactId> + <version>1.72</version> + <type>jar</type> + </dependency> + </dependencies> + </location> </locations> </target> |