This is a complete refactoring of my old question at a new level of knowledge.
Summary of Issues
My eclipse product is not working. Is any additional feature required?
Create a simplified RCP application



At this point, all functions of the wizard are disabled, and I press the button Finish. As a result, Eclipse creates an almost empty project with only files MANIFEST.MFand build.properties.

Now I am creating an application. The application is an extension to the extension point org.eclipse.core.runtime.applications, which is implemented inside the plugin org.eclipse.core.runtime. Therefore, I add this plugin as a dependency:

This creates a new node in Package Explorer, called Plug-in Dependencies:

Now I am adding a new extension to this point in my plugin:

id myappid myproject.Application.
plugin.xml
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="myappid"
point="org.eclipse.core.runtime.applications">
<application
cardinality="singleton-global"
thread="main"
visible="true">
<run
class="myproject.Application">
</run>
</application>
</extension>
</plugin>
. build.properties:
source.. = src/
output.. = bin/
bin.includes = META-INF/,\
.,\
plugin.xml
MANIFEST.MF , , , , Overview:

, myappid, . , . myproject.myappid.
Extensions , class :

New Java class , , java :
package myproject;
import org.eclipse.equinox.app.IApplication;
import org.eclipse.equinox.app.IApplicationContext;
public class Application implements IApplication {
@Override
public Object start(IApplicationContext context) throws Exception {
return null;
}
@Override
public void stop() {
}
}
, start:
System.out.println("Hello world from myproject");
Overview . , :
,
Eclipse.
, , .


plugin.xml org.eclipse.core.runtime.products.
Overview New, New Product Definition:
<411 >
, , .
plugin.xml lokks :
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="myappid"
point="org.eclipse.core.runtime.applications">
<application
cardinality="singleton-global"
thread="main"
visible="true">
<run
class="myproject.Application">
</run>
</application>
</extension>
<extension
id="myproductid"
point="org.eclipse.core.runtime.products">
<product
application="myproject.myappid"
name="MyProduct">
</product>
</extension>
</plugin>
, .
, .
, , . Eclipse.
, Dependencies :

Add Required Plug-ins


Overview , ( ).


D:\myproject . , eclipse.exe

, , .
1) ? eclipse - ? ?
2) ? GUI, , Eclipse? / ?