-
Notifications
You must be signed in to change notification settings - Fork 0
Develop With Eclipse
southernbear edited this page Nov 29, 2012
·
2 revisions
Home > Developing > Develop with Eclipse
For these who uses Eclipse to develop projects
- File -> Import -> Git -> Projects from Git -> URI -> Enter our repository
- Next... until ask to import porject -> Import existing projects -> finish
- Close Eclipse
- Open the project location and edit .project
- In buildSpec tag, add
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
</buildCommand>
In _natures_ tag, add
<nature>org.eclipse.jdt.core.javanature</nature>- create and edit .classpath
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
- Start Eclipse