Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'features/org.eclipse.tcf.repo/pom.xml')
-rw-r--r--features/org.eclipse.tcf.repo/pom.xml52
1 files changed, 52 insertions, 0 deletions
diff --git a/features/org.eclipse.tcf.repo/pom.xml b/features/org.eclipse.tcf.repo/pom.xml
index 9ba35dece..d7452d72e 100644
--- a/features/org.eclipse.tcf.repo/pom.xml
+++ b/features/org.eclipse.tcf.repo/pom.xml
@@ -127,5 +127,57 @@
</plugins>
</build>
</profile>
+
+ <profile>
+ <id>sign-new</id>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-antrun-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>deploy</id>
+ <phase>install</phase>
+ <goals>
+ <goal>run</goal>
+ </goals>
+ <configuration>
+ <target>
+ <delete includeemptydirs="false">
+ <fileset dir="${tcf-install}">
+ <include name="**" />
+ </fileset>
+ <fileset dir="target">
+ <include name="${tcf-zipfile}"/>
+ </fileset>
+ </delete>
+ <zip destfile="target/${tcf-zipfile}">
+ <fileset dir="target/checksumFix">
+ <include name="**"/>
+ </fileset>
+ </zip>
+ <copy includeemptydirs="false" todir="${tcf-install}">
+ <fileset dir="target/checksumFix">
+ <include name="**"/>
+ </fileset>
+ <fileset dir="target">
+ <include name="${tcf-zipfile}"/>
+ </fileset>
+ </copy>
+ <chmod perm="g+w">
+ <fileset dir="${tcf-install}">
+ <include name="**"/>
+ </fileset>
+ </chmod>
+ </target>
+
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+
</profiles>
</project>

Back to the top