summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2023-05-09 09:44:03 +0200
committerThomas Wolf <twolf@apache.org>2023-05-23 19:47:08 +0200
commitd3d0ec4290393d71d1557b7bd582234ab023e9eb (patch)
tree151ee57917b954c6dac61afd7eacf0744d9ebdec
parent0d92f543f5a41d707daf9a8fd12bac26674f1502 (diff)
downloadjgit-d3d0ec4290393d71d1557b7bd582234ab023e9eb.tar.gz
jgit-d3d0ec4290393d71d1557b7bd582234ab023e9eb.zip
Update to Tycho 4.0.0-SNAPSHOT
We need to update to Tycho in order to force PGP signing of the bouncycastle libraries which isn't supported by earlier Tycho versions. For that we need to run Maven on Java 17 or higher. In order to run tests on Java 11 add a `toolchain.xml` file into the `~/.m2` directory providing the path to Java installations: <?xml version='1.0' encoding='UTF-8'?> <toolchains> <toolchain> <type>jdk</type> <provides> <id>JavaSE-11</id> <version>11</version> </provides> <configuration> <jdkHome>/path/to/java-11</jdkHome> </configuration> </toolchain> <toolchain> <type>jdk</type> <provides> <id>JavaSE-17</id> <version>17</version> </provides> <configuration> <jdkHome>/path/to/java-17</jdkHome> </configuration> </toolchain> </toolchains> Change-Id: Ib0f18147826e5b4a7fa1f41590772516269de702
-rw-r--r--org.eclipse.jgit.packaging/pom.xml6
1 files changed, 5 insertions, 1 deletions
diff --git a/org.eclipse.jgit.packaging/pom.xml b/org.eclipse.jgit.packaging/pom.xml
index c9c2c4367b..0e1bea7b19 100644
--- a/org.eclipse.jgit.packaging/pom.xml
+++ b/org.eclipse.jgit.packaging/pom.xml
@@ -23,7 +23,7 @@
<properties>
<java.version>11</java.version>
- <tycho-version>2.7.5</tycho-version>
+ <tycho-version>4.0.0-SNAPSHOT</tycho-version>
<target-platform>jgit-4.17</target-platform>
</properties>
@@ -36,6 +36,10 @@
<id>repo.eclipse.org.cbi-snapshots</id>
<url>https://repo.eclipse.org/content/repositories/cbi-snapshots/</url>
</pluginRepository>
+ <pluginRepository>
+ <id>tycho-snapshots</id>
+ <url>https://repo.eclipse.org/content/repositories/tycho-snapshots/</url>
+ </pluginRepository>
</pluginRepositories>
<modules>