错误截图:更新 P2 存储库时出现错误消息
在 Eclipse 2019-12 上使用 JDK 11 构建产品后,由于 org.apache.batik.util.gui 1.6 无法更新 p2 存储库。
问题:最新的org.apache.batik.util.gui:1.6版本最新的org.apache.batik.util:1.11版本
由于版本不匹配问题,无法更新p2。
Eclipse 链接:https ://download.eclipse.org/releases/2019-12/201912181000/
GMF 工具链接:https ://download.eclipse.org/modeling/gmp/gmf-tooling/updates/releases-3.3.1a/
pom.xml
<profile>
<id>2019-12-release</id>
<activation>
<activeByDefault>true</activeByDefault>
</activation>
<properties>
<eclipse.repository>https://download.eclipse.org/releases/2019-12/201912181000/</eclipse.repository>
</properties>
</profile>
</profiles>
<repositories>
<repository>
<id>eclipse-repository</id>
<layout>p2</layout>
<url>${eclipse.repository}</url>
</repository>
<repository>
<id>org.eclipse.swtbot.updatesite</id>
<layout>p2</layout>
<url>http://download.eclipse.org/technology/swtbot/releases/latest/</url>
</repository>
<repository>
<id>org.eclipse.runtime.tooling</id>
<layout>p2</layout>
<url>https://download.eclipse.org/modeling/gmp/gmf-tooling/updates/releases-3.3.1a/</url>
</repository>
</repositories>
请让我知道如何解决此问题。没有这个,我们就无法升级我们的应用程序(JDK 11 兼容)。