Update Building Headless RCP Xtext Application: Part I authored by Serafim Simonov's avatar Serafim Simonov
......@@ -58,12 +58,24 @@ if your project explorer uses flat Project Presentation.
<version>1.0.0-SNAPSHOT</version>
</parent>
<artifactId>org.xtext.example.mydsl.product</artifactId>
<packaging>eclipse-plugin</packaging>
<packaging>eclipse-repository</packaging>
</project>
```
7. Create META-INF folder and create Manifest.MF file inside it.
7. Create META-INF folder and put MANIFEST.MF with this content into it.
```
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: product
Bundle-SymbolicName: org.xtext.example.mydsl.product;singleton:=true
Bundle-Version: 1.0.0.qualifier
Require-Bundle: org.eclipse.core.runtime
Automatic-Module-Name: org.xtext.example.mydsl.product
Bundle-RequiredExecutionEnvironment: JavaSE-11
```
## Make Plugin project and product project children of parent
1. Remove all projects from the Eclipse (do not delete the on disk!) and close it.
......
......