Oracle WorkShop for weblogic安装SVN插件

参考:http://blogs.oracle.com/simonthorpe/2009/06/subversion_source_control_in_o.html  

开发weblogic portal使用的开发工具oracle workshop for weblogic是基于eclipse的

在开发工程中的版本控制使用的是svn,但是这东西的eclipse插件似乎不怎么好装

选择用subclipse,在更新界面添加站点

 

  • Name = subclipse 1.6
  • URL = http://subclipse.tigris.org/update_1.6.x

 

开始安装的时候,总是报错,说需要这个com.m7.nitrox,然后看到参考文档,发现

%BEA_HOME%\wlportal_10.3\eclipse\features\com.bea.wlp_10.3.0\feature.xml

这个文件当中的一段requires,安装插件的时候这些require并没有,因此去掉这些插件require后再安装

<requires>
<import plugin="org.eclipse.core.runtime" version="3.3" match="compatible"/>
<import plugin="org.eclipse.ui" version="3.3" match="compatible"/>
<!--
<import feature="com.m7.nitrox" version="1.0.20" match="compatible"/>
<import feature="com.bea.workshop.cmdline.feature" version="1.0.30" match="compatible"/>
<import feature="com.bea.workshop.common.feature" version="1.1.40" match="compatible"/>
<import feature="com.bea.workshop.upgrade81.feature" version="1.0.30" match="compatible"/>
<import feature="com.bea.workshop.web.feature" version="1.0.20" match="compatible"/>
<import feature="com.bea.workshop.wls.feature" version="1.1.30" match="compatible"/>
<import feature="com.bea.workshop.xmlbeans.feature" version="1.0.30" match="compatible"/>
-->
</requires>

然后再find and install,选择需要的组件,当然有些组件不能用

安装完成之后重启完就可以在workshop中使用subclipse了。

你可能感兴趣的:(eclipse,oracle,SVN,weblogic,subversion)