Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Johnson2020-11-02 16:46:00 +0000
committerAndrew Johnson2020-11-02 16:46:00 +0000
commit924c0cd1ea659faa85a4ef7b6e4494c1d932f66e (patch)
tree895f327d19b175372d2f4ef830a4a1ed896ef970
parent6de588608f9207eed67574be0e41eb63d3fe769c (diff)
downloadorg.eclipse.mat-924c0cd1ea659faa85a4ef7b6e4494c1d932f66e.tar.gz
org.eclipse.mat-924c0cd1ea659faa85a4ef7b6e4494c1d932f66e.tar.xz
org.eclipse.mat-924c0cd1ea659faa85a4ef7b6e4494c1d932f66e.zip
568417: Build changes for migration of MAT JIPP to new CI infrastructure
Try fixing build output upload Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=568417 Change-Id: I71ef0bf5b3963389577593398e5ff9a4f43fc6cd
-rw-r--r--org.eclipse.mat.product/pom.xml5
-rw-r--r--org.eclipse.mat.updatesite/pom.xml7
2 files changed, 7 insertions, 5 deletions
diff --git a/org.eclipse.mat.product/pom.xml b/org.eclipse.mat.product/pom.xml
index 1b1eb43d..26e16bca 100644
--- a/org.eclipse.mat.product/pom.xml
+++ b/org.eclipse.mat.product/pom.xml
@@ -195,7 +195,7 @@
<configuration>
<url>scpexe://${download-remote-publish-rcp-path}</url>
<commands>
- <command>rm ${download-publish-rcp-path}/*</command>
+ <command>rm -rf ${download-publish-rcp-path}/*</command>
</commands>
</configuration>
</execution>
@@ -208,7 +208,8 @@
<configuration>
<fromDir>target/products</fromDir>
<includes>*.zip,*.dmg</includes>
- <url>scpexe://${${download-remote-publish-rcp-path}</url>
+ <url>scpexe://${download-remote-publish-rcp-path}</url>
+ <toDir></toDir>
</configuration>
</execution>
</executions>
diff --git a/org.eclipse.mat.updatesite/pom.xml b/org.eclipse.mat.updatesite/pom.xml
index 6e6be249..f8a54ede 100644
--- a/org.eclipse.mat.updatesite/pom.xml
+++ b/org.eclipse.mat.updatesite/pom.xml
@@ -62,7 +62,7 @@
<configuration>
<url>scpexe://${download-remote-publish-path}</url>
<commands>
- <command>rm ${download-publish-path}/*</command>
+ <command>rm -rf ${download-publish-path}/*</command>
</commands>
</configuration>
</execution>
@@ -74,8 +74,9 @@
</goals>
<configuration>
<fromDir>target/repository</fromDir>
- <includes>**</includes>
- <url>scpexe://${${download-remote-publish-path}</url>
+ <includes>*/**</includes>
+ <url>scpexe://${download-remote-publish-path}</url>
+ <toDir></toDir>
</configuration>
</execution>
</executions>

Back to the top