1.下载Mylyn和XPlanner Connector
Xplanner Connector – http://download.eclipse.org/tools/mylyn/update/incubator
2.到http://www.xplanner.org下载XPlanner,部署方法在下载下来的压缩包中的README.txt写得非常详细,要注意一点的是如果你是使用jdk6的话,那启动tomcat的时候就会报错,主要原因是spring-beans.xml中的配置已经不对了,修改如下:
把原来这句
<bean id="metaRepository" class="com.technoetic.xplanner.domain.repository.MetaRepositoryImpl">
<property name="repositories">
<map>
....
</map>
</property>
</bean>
改成
<bean id="metaRepository" class="com.technoetic.xplanner.domain.repository.MetaRepositoryImpl">
<property name="repositories">
<bean class="java.util.HashMap">
<constructor-arg>
<map>
....
</map>
</constructor-arg>
</bean>
</property>
</bean>
3.启动Xplanner,并添加相应的Project和task,如下
4.接下来要在Eclipse中添加Repository,操作如下
5.大功告成,现在可以在Eclipse编辑任务和提交任务了
No comments:
Post a Comment