Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'releng/org.eclipse.emf.parsley.repository/pom.xml')
-rw-r--r--releng/org.eclipse.emf.parsley.repository/pom.xml50
1 files changed, 50 insertions, 0 deletions
diff --git a/releng/org.eclipse.emf.parsley.repository/pom.xml b/releng/org.eclipse.emf.parsley.repository/pom.xml
index 44efbf0aa..49b9c91e7 100644
--- a/releng/org.eclipse.emf.parsley.repository/pom.xml
+++ b/releng/org.eclipse.emf.parsley.repository/pom.xml
@@ -55,6 +55,27 @@
<goal>run</goal>
</goals>
</execution>
+ <execution>
+ <id>copy-to-zips-target</id>
+ <phase>package</phase>
+ <configuration>
+ <target>
+ <echo message="" />
+ <echo message="Source path: ${project.build.directory}" />
+ <echo message="Built version: ${unqualifiedVersion}.${buildQualifier}" />
+ <echo message="" />
+
+ <copy includeemptydirs="false" todir="${zipped.repository.dest}">
+ <fileset dir="${project.build.directory}">
+ <include name="*.zip" />
+ </fileset>
+ </copy>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
</executions>
</plugin>
</plugins>
@@ -119,6 +140,35 @@
</execution>
</executions>
</plugin>
+
+ <plugin>
+ <!-- copy the zipped p2 repository into download zips area -->
+ <artifactId>maven-antrun-plugin</artifactId>
+ <version>${maven-antrun-plugin.version}</version>
+ <executions>
+ <execution>
+ <id>copy-to-zips-download</id>
+ <phase>package</phase>
+ <configuration>
+ <target>
+ <echo message="" />
+ <echo message="Source path: ${project.build.directory}" />
+ <echo message="Built version: ${unqualifiedVersion}.${buildQualifier}" />
+ <echo message="" />
+
+ <copy includeemptydirs="false" todir="${parsley.download.area}/${parsley.zips.dir}">
+ <fileset dir="${project.build.directory}">
+ <include name="*.zip" />
+ </fileset>
+ </copy>
+ </target>
+ </configuration>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
</profile>

Back to the top