我的Eclipse RCP应用程序目前使用Target Platform 2023-09
,它在2023-09.target
文件中定义如下:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?>
<target name="Retrospective (2023-09)">
<locations>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<repository location="http://download.eclipse.org/releases/2023-09/"/>
<unit id="org.eclipse.equinox.sdk.feature.group" version="0.0.0"/>
<unit id="org.eclipse.platform.sdk" version="0.0.0"/>
</location>
</locations>
</target>
字符串
现在我尝试升级到最近发布的Target Platform 2023-12
和下面创建的2023-12.target
:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde version="3.8"?>
<target name="Retrospective (2023-12)">
<locations>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<repository location="http://download.eclipse.org/releases/2023-12/"/>
<unit id="org.eclipse.equinox.sdk.feature.group" version="0.0.0"/>
<unit id="org.eclipse.platform" version="0.0.0"/>
</location>
</locations>
</target>
型
加载这个新定义后,再也找不到来自以下包的类。
org.eclipse.core.databinding.beans.*
个org.eclipse.jface.text.*
个
不知道这些类是否已经被转移到不同的包中,或者它们是否被完全删除了。我也找不到任何有用的更新日志。
1条答案
按热度按时间lnvxswe21#
我以前
字符串
而不是
org.eclipse.platform
对于
org.eclipse.jface.text
,我把它放在我自己代码的feature.xml
中,Tycho找到了它。