Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoland Grunberg2013-09-11 18:00:25 +0000
committerRoland Grunberg2013-09-11 18:20:07 +0000
commit4cafb1200f99ced7589ddc020a8d3e765ef783f5 (patch)
tree0890bf96c85154329b6418237fa34fb880cbdfc8 /pom.xml
parent7203f729f8aacc5e5cd9c1937c54848a438a4d01 (diff)
downloadorg.eclipse.linuxtools-4cafb1200f99ced7589ddc020a8d3e765ef783f5.tar.gz
org.eclipse.linuxtools-4cafb1200f99ced7589ddc020a8d3e765ef783f5.tar.xz
org.eclipse.linuxtools-4cafb1200f99ced7589ddc020a8d3e765ef783f5.zip
Re-implement Pack200 using new CBI plugins.
Change-Id: I56c7fc7277a77338354048e830b586f6366f8099 Reviewed-on: https://git.eclipse.org/r/16339 Reviewed-by: Roland Grunberg <rgrunber@redhat.com> IP-Clean: Roland Grunberg <rgrunber@redhat.com> Tested-by: Roland Grunberg <rgrunber@redhat.com>
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml54
1 files changed, 54 insertions, 0 deletions
diff --git a/pom.xml b/pom.xml
index 59a6700286..b02388afde 100644
--- a/pom.xml
+++ b/pom.xml
@@ -148,6 +148,29 @@
</configuration>
</plugin>
<plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>target-platform-configuration</artifactId>
+ <version>${tycho-version}</version>
+ <configuration>
+ <resolver>p2</resolver>
+ <includePackedArtifacts>true</includePackedArtifacts>
+ </configuration>
+ </plugin>
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-pack200a-plugin</artifactId>
+ <version>${tycho-version}</version>
+ <executions>
+ <execution>
+ <id>pack200-normalize</id>
+ <goals>
+ <goal>normalize</goal>
+ </goals>
+ <phase>verify</phase>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.eclipse.cbi.maven.plugins</groupId>
<artifactId>eclipse-jarsigner-plugin</artifactId>
<version>1.0.4</version>
@@ -161,6 +184,37 @@
</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>
+ <phase>verify</phase>
+ </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>verify</phase>
+ </execution>
+ </executions>
+ <configuration>
+ <defaultP2Metadata>false</defaultP2Metadata>
+ </configuration>
+ </plugin>
</plugins>
</build>
</profile>

Back to the top