我开发了一个 RCP 应用程序,并提供 p2 更新功能。
在我的 p2.inf 中,我提供了更新站点的 url。我不希望用户添加任何站点,因此我禁用了添加站点的选项。我的 p2.inf 看起来像:
instructions.configure=\
addRepository(type:0,location:http${#58}//blrupdates.com/Updates);\
addRepository(type:1,location:http${#58}//blrupdates.com/Updates);
如果用户位置是班加罗尔,RCP 应用程序应该去 brlupdates.com,如果用户位置是 chennai,那么 RCP 应用程序应该在 chnupdates.com 上寻找更新。
如何在 p2.inf 中添加另一个存储库位置?
-普里扬克