Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Knauer2013-12-16 20:05:40 +0000
committerMarkus Knauer2013-12-16 20:05:40 +0000
commita5ce391e4aac4aa5cb825bc79f1a521a30433a3c (patch)
treecb7546ba78e5b2a9ec55bf821216112760f86ecc /packages/org.eclipse.epp.package.automotive.product
parent78f89eb0c09f8c45cc4ebd6e9c6b38346f442c9f (diff)
downloadorg.eclipse.epp.packages-a5ce391e4aac4aa5cb825bc79f1a521a30433a3c.tar.gz
org.eclipse.epp.packages-a5ce391e4aac4aa5cb825bc79f1a521a30433a3c.tar.xz
org.eclipse.epp.packages-a5ce391e4aac4aa5cb825bc79f1a521a30433a3c.zip
Adjust build behaviour to old system
- mirror EPP IUs to a single local EPP p2 repository - create download archives according to old naming conventions
Diffstat (limited to 'packages/org.eclipse.epp.package.automotive.product')
-rw-r--r--packages/org.eclipse.epp.package.automotive.product/pom.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/packages/org.eclipse.epp.package.automotive.product/pom.xml b/packages/org.eclipse.epp.package.automotive.product/pom.xml
index 90371e87..0d37eaeb 100644
--- a/packages/org.eclipse.epp.package.automotive.product/pom.xml
+++ b/packages/org.eclipse.epp.package.automotive.product/pom.xml
@@ -30,6 +30,41 @@
<build>
<plugins>
+
+ <plugin>
+ <groupId>org.eclipse.tycho.extras</groupId>
+ <artifactId>tycho-p2-extras-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>mirror-to-central-epp-repository</id>
+ <phase>verify</phase>
+ <goals>
+ <goal>mirror</goal>
+ </goals>
+ <configuration>
+ <source>
+ <repository>
+ <url>${project.build.directory}/repository</url>
+ </repository>
+ </source>
+ <ius>
+ <iu>
+ <query>
+ <expression>id ~= /*epp*/ &amp;&amp; !(id ~= /*org.eclipse.epp.mpc*/)</expression>
+ </query>
+ </iu>
+ </ius>
+ <destination>${eclipse.epp.targetRepository}</destination>
+ <followOnlyFilteredRequirements>true</followOnlyFilteredRequirements>
+ <includeOptional>false</includeOptional>
+ <includeNonGreedy>false</includeNonGreedy>
+ <includePacked>true</includePacked>
+ <append>true</append>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
@@ -59,6 +94,7 @@
<product>
<id>${project.artifactId}</id>
<rootFolder>eclipse</rootFolder>
+ <archiveFileName>${build}_eclipse-${eclipse.epp.id}-${eclipse.simultaneous.release.id}</archiveFileName>
</product>
</products>
<profile>${project.artifactId}</profile>

Back to the top