Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2013-08-08 09:39:50 +0000
committerLars Vogel2013-08-08 09:39:50 +0000
commita4698b1514c4c1857cfeb1ec7771e92c7ccf2fdb (patch)
treee0e2ca3ff61a68cfafb314a5b08936472fa2d753
parent1b498f25a89072161a1e84764a8e8eca9586ca6c (diff)
downloadorg.eclipse.e4.tools-a4698b1514c4c1857cfeb1ec7771e92c7ccf2fdb.tar.gz
org.eclipse.e4.tools-a4698b1514c4c1857cfeb1ec7771e92c7ccf2fdb.tar.xz
org.eclipse.e4.tools-a4698b1514c4c1857cfeb1ec7771e92c7ccf2fdb.zip
Bug 409372 - No source bundles for e4 tools bundles
Adding source build for e4 tools, still source bundle missing for the org.eclipse.e4.tools plug-in, see bug for discussion
-rw-r--r--build/org.eclipse.e4.core.tools.update/category.xml3
-rw-r--r--features/org.eclipse.e4.core.tools.feature/pom.xml31
2 files changed, 34 insertions, 0 deletions
diff --git a/build/org.eclipse.e4.core.tools.update/category.xml b/build/org.eclipse.e4.core.tools.update/category.xml
index 3da1c119..21432de7 100644
--- a/build/org.eclipse.e4.core.tools.update/category.xml
+++ b/build/org.eclipse.e4.core.tools.update/category.xml
@@ -3,6 +3,9 @@
<feature url="features/org.eclipse.e4.core.tools.feature_0.14.0.qualifier.jar" id="org.eclipse.e4.core.tools.feature" version="0.14.0.qualifier">
<category name="org.eclipse.e4.tools.core"/>
</feature>
+ <feature url="features/org.eclipse.e4.core.tools.feature.source_0.14.0.qualifier.jar" id="org.eclipse.e4.core.tools.feature.source" version="0.14.0.qualifier">
+ <category name="org.eclipse.e4.tools.core"/>
+ </feature>
<feature url="features/org.eclipse.e4.tools.css.editor.feature_0.14.0.qualifier.jar" id="org.eclipse.e4.tools.css.editor.feature" version="0.14.0.qualifier">
<category name="org.eclipse.e4.tools.css.editor"/>
</feature>
diff --git a/features/org.eclipse.e4.core.tools.feature/pom.xml b/features/org.eclipse.e4.core.tools.feature/pom.xml
index 3117aba8..e5bf6c51 100644
--- a/features/org.eclipse.e4.core.tools.feature/pom.xml
+++ b/features/org.eclipse.e4.core.tools.feature/pom.xml
@@ -13,4 +13,35 @@
<version>0.14.0.qualifier</version>
<packaging>eclipse-feature</packaging>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-source-feature-plugin</artifactId>
+ <executions>
+ <execution>
+ <phase>package</phase>
+ <id>source-feature</id>
+ <goals>
+ <goal>source-feature</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <id>attached-p2-metadata</id>
+ <phase>package</phase>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
</project>

Back to the top