Added a page describing how to set up Eclipse with an I2P branch (NetBeans needs instructions as well)

This commit is contained in:
str4d
2013-01-05 01:02:12 +00:00
parent 324579f57d
commit b3a558e16b
2 changed files with 52 additions and 0 deletions

View File

@@ -137,6 +137,7 @@
<li class="has-sub"><div class="menuitem"><span>{{ _('Guides') }}</span></div>
<ul>
<li><a href="{{ site_url('volunteer/guides/new-developers') }}"><div class="menuitem"><span>{{ _('New developers') }}</span></div></a></li>
<li><a href="{{ site_url('volunteer/guides/ides') }}"><div class="menuitem"><span>{{ _('Using an IDE with I2P') }}</span></div></a></li>
<li><a href="{{ site_url('volunteer/guides/dev-guidelines') }}"><div class="menuitem"><span>{{ _('Developer guidelines and coding style') }}</span></div></a></li>
<li><a href="{{ site_url('volunteer/guides/new-translators') }}"><div class="menuitem"><span>{{ _('New translators') }}</span></div></a></li>
</ul>

View File

@@ -0,0 +1,51 @@
{% extends "global/layout.html" %}
{% block title %}Using an IDE with I2P{% endblock %}
{% block content %}
<p>
The main I2P development branch (i2p.i2p) has been set up to enable developers to easily set up two of the commonly-used IDEs for Java development: Eclipse and NetBeans.
</p>
<h1>Eclipse</h1>
<p>
The main I2P development branch (and therefore any branches from it) contain .project and .classpath Eclipse files, to enable the branch to be easily set up in Eclipse.
</p>
<ol>
<li>
Check out the I2P branch into some directory (e.g. "$HOME/dev/i2p.i2p").
</li>
<li>
Open Eclipse and create a new Workspace, based in the directory that the I2P branch was checked out to.
</li>
<li>
Select "File - Import..." and then under "General" select "Existing Projects into Workspace".
</li>
<li>
For "Select root directory:" choose the directory that the I2P branch was checked out to.
</li>
<li>
If necessary, click "Refresh" to refresh the list of projects.
</li>
<li>
Select every project in the list, and click "Finish".
</li>
<li>
Done! Your workspace should now contain all projects within the I2P branch, and their build dependencies should be correctly set up.
</li>
</ol>
<h1>NetBeans</h1>
<p>
TODO: fill this in.
</p>
{% endblock %}