Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Webster2012-07-24 16:34:57 +0000
committerThanh Ha2012-07-24 16:34:57 +0000
commita11921b77ada509b2d0c8cd94dd89ad61ce379c9 (patch)
tree3fbd73f7c873f8d4ecf2a62eed0d9f32ff178c3b
parent021574b347b41771c24090117a9ccb9d56d7e215 (diff)
downloadeclipse.platform.releng.aggregator-a11921b77ada509b2d0c8cd94dd89ad61ce379c9.tar.gz
eclipse.platform.releng.aggregator-a11921b77ada509b2d0c8cd94dd89ad61ce379c9.tar.xz
eclipse.platform.releng.aggregator-a11921b77ada509b2d0c8cd94dd89ad61ce379c9.zip
Add eclipse-pack profile
-rw-r--r--eclipse-parent/pom.xml61
1 files changed, 61 insertions, 0 deletions
diff --git a/eclipse-parent/pom.xml b/eclipse-parent/pom.xml
index c8ab11adc..7b7a80d8e 100644
--- a/eclipse-parent/pom.xml
+++ b/eclipse-parent/pom.xml
@@ -308,5 +308,66 @@
</build>
</profile>
+ <profile>
+ <id>eclipse-pack</id>
+ <build>
+ <plugins>
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>${tycho.version}</version>
+ <configuration>
+ <includePackedArtifacts>true</includePackedArtifacts>
+ </configuration>
+ </plugin>
+
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-pack200a-plugin</artifactId>
+ <version>${tycho-extras.version}</version>
+ <executions>
+ <execution>
+ <id>pack200-normalize</id>
+ <goals>
+ <goal>normalize</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-pack200b-plugin</artifactId>
+ <version>${tycho-extras.version}</version>
+ <executions>
+ <execution>
+ <id>pack200-pack</id>
+ <goals>
+ <goal>pack</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+
+ <plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-p2-plugin</artifactId>
+ <version>${tycho.version}</version>
+ <executions>
+ <execution>
+ <id>p2-metadata</id>
+ <goals>
+ <goal>p2-metadata</goal>
+ </goals>
+ <phase>package</phase>
+ </execution>
+ </executions>
+ <configuration>
+ <defaultP2Metadata>false</defaultP2Metadata>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
</profiles>
</project>

Back to the top