Skip to content
This repository has been archived by the owner on Nov 30, 2021. It is now read-only.

Commit

Permalink
JBTIS-318: Generate source bundles for IS component features.
Browse files Browse the repository at this point in the history
Conflicts:
	drools-eclipse/org.drools.updatesite/category.xml
  • Loading branch information
krisv committed Nov 7, 2014
1 parent 5b6028e commit 035c0c3
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 2 deletions.
13 changes: 11 additions & 2 deletions drools-eclipse/org.drools.updatesite/category.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,27 @@
<feature url="org.drools.eclipse.feature_6.2.0.qualifier" id="org.drools.eclipse.feature" version="6.2.0.qualifier">
<category name="droolsjbpm"/>
</feature>
<feature url="org.drools.eclipse.feature.source_6.2.0.qualifier" id="org.drools.eclipse.feature.source" version="6.2.0.qualifier">
<category name="droolsjbpm"/>
</feature>
<feature url="org.guvnor.tools.feature_6.2.0.qualifier" id="org.guvnor.tools.feature" version="6.2.0.qualifier">
<category name="droolsjbpm"/>
</feature>
<feature url="org.guvnor.tools.feature.source_6.2.0.qualifier" id="org.guvnor.tools.feature.source" version="6.2.0.qualifier">
<category name="droolsjbpm"/>
</feature>
<feature url="org.jbpm.eclipse.feature_6.2.0.qualifier" id="org.jbpm.eclipse.feature" version="6.2.0.qualifier">
<category name="droolsjbpm"/>
</feature>
<feature url="org.jbpm.eclipse.feature.source_6.2.0.qualifier" id="org.jbpm.eclipse.feature.source" version="6.2.0.qualifier">
<category name="droolsjbpm"/>
</feature>
<feature url="org.jboss.tools.runtime.drools.detector.feature_6.2.0.qualifier.jar" id="org.jboss.tools.runtime.drools.detector.feature" version="6.2.0.qualifier">
<category name="droolsjbpm"/>
</feature>
<!-- <feature url="org.jboss.tools.runtime.drools.detector.feature.source_6.2.0.qualifier.jar" id="org.jboss.tools.runtime.drools.detector.feature.source" version="6.2.0.qualifier">
<feature url="org.jboss.tools.runtime.drools.detector.feature.source_6.2.0.qualifier.jar" id="org.jboss.tools.runtime.drools.detector.feature.source" version="6.2.0.qualifier">
<category name="droolsjbpm"/>
</feature> -->
</feature>

<category-def name="droolsjbpm" label="Drools and jBPM">
<description>
Expand Down
28 changes: 28 additions & 0 deletions drools-eclipse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,34 @@
<artifactId>tycho-versions-plugin</artifactId>
<version>${version.org.eclipse.tycho}</version>
</plugin>
<plugin>
<groupId>org.eclipse.tycho.extras</groupId>
<artifactId>tycho-source-feature-plugin</artifactId>
<version>${version.org.eclipse.tycho}</version>
<executions>
<execution>
<id>source-feature</id>
<phase>package</phase>
<goals>
<goal>source-feature</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-plugin</artifactId>
<version>${version.org.eclipse.tycho}</version>
<executions>
<execution>
<id>attached-p2-metadata</id>
<phase>package</phase>
<goals>
<goal>p2-metadata</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit 035c0c3

Please sign in to comment.