Files
i2p.www/i2p2www/pages/site/get-involved/guides/ides.html
2014-01-09 19:39:15 +00:00

52 lines
1.6 KiB
HTML

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