Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'packages/org.eclipse.epp.package.modeling.product')
-rw-r--r--packages/org.eclipse.epp.package.modeling.product/pom.xml57
1 files changed, 3 insertions, 54 deletions
diff --git a/packages/org.eclipse.epp.package.modeling.product/pom.xml b/packages/org.eclipse.epp.package.modeling.product/pom.xml
index 9a538cdf..c355fb73 100644
--- a/packages/org.eclipse.epp.package.modeling.product/pom.xml
+++ b/packages/org.eclipse.epp.package.modeling.product/pom.xml
@@ -68,66 +68,15 @@
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-p2-director-plugin</artifactId>
- <version>${tycho.version}</version>
- <executions>
- <execution>
- <id>materialize-products</id>
- <goals>
- <goal>materialize-products</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <products>
- <product>
- <id>${project.artifactId}</id>
- <rootFolder>eclipse</rootFolder>
- </product>
- </products>
- <profile>${project.artifactId}</profile>
- </configuration>
+ </plugin>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
</plugin>
</plugins>
</build>
<profiles>
<profile>
- <id>archiving</id>
- <!-- This profile is only activated when running the build on a Unix-like OS where we can expect a working Bash -->
- <activation>
- <activeByDefault>false</activeByDefault>
- <os>
- <family>unix</family>
- </os>
- </activation>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>exec-maven-plugin</artifactId>
- <version>1.2.1</version>
- <executions>
- <execution>
- <id>archive-products</id>
- <phase>pre-integration-test</phase>
- <goals>
- <goal>exec</goal>
- </goals>
- </execution>
- </executions>
- <configuration>
- <executable>${basedir}/../../releng/org.eclipse.epp.config/tools/createArchives.sh</executable>
- <arguments>
- <argument>${eclipse.epp.archiveDirectory}</argument>
- <argument>${project.build.directory}/products/epp.package.${eclipse.epp.id}</argument>
- <argument>${build}_eclipse-${eclipse.epp.id}-${eclipse.simultaneous.release.id}</argument>
- </arguments>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
<id>eclipse-sign-mac</id>
<build>
<plugins>

Back to the top