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/maven | |
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/maven')
-rw-r--r-- | org.eclipse.jgit.packaging/org.eclipse.jgit.target/maven/dependencies.tpd | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/org.eclipse.jgit.packaging/org.eclipse.jgit.target/maven/dependencies.tpd b/org.eclipse.jgit.packaging/org.eclipse.jgit.target/maven/dependencies.tpd new file mode 100644 index 0000000000..9f2220fd98 --- /dev/null +++ b/org.eclipse.jgit.packaging/org.eclipse.jgit.target/maven/dependencies.tpd @@ -0,0 +1,29 @@ +target "dependencies" + +maven bouncycastle + scope = compile + dependencyDepth = none + missingManifest = error + includeSources +{ + dependency { + groupId = "org.bouncycastle" + artifactId = "bcpg-jdk18on" + version = "1.72.2" + } + dependency { + groupId = "org.bouncycastle" + artifactId = "bcprov-jdk18on" + version = "1.72" + } + dependency { + groupId = "org.bouncycastle" + artifactId = "bcpkix-jdk18on" + version = "1.72" + } + dependency { + groupId = "org.bouncycastle" + artifactId = "bcutil-jdk18on" + version = "1.72" + } +} |