Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Johnson2020-11-04 10:42:27 +0000
committerAndrew Johnson2020-11-04 10:42:27 +0000
commit53a300a9b0ca108384494686fa094ec7cf572ab0 (patch)
treefbd4f46c0dd6415ecaa2da2ca4bd289b6b2971e5
parent1ec5d066d82a3bc7dc199f11e4047cb65a6af608 (diff)
downloadorg.eclipse.mat-53a300a9b0ca108384494686fa094ec7cf572ab0.tar.gz
org.eclipse.mat-53a300a9b0ca108384494686fa094ec7cf572ab0.tar.xz
org.eclipse.mat-53a300a9b0ca108384494686fa094ec7cf572ab0.zip
568417: Build changes for migration of MAT JIPP to new CI infrastructure
Disable default in deploy phase Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=568417 Change-Id: I56dd5b25b600fbed7c5fa2f5581b1fcbfedd2c90
-rw-r--r--parent/pom.xml7
1 files changed, 7 insertions, 0 deletions
diff --git a/parent/pom.xml b/parent/pom.xml
index 1540c5dd..bd406305 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -197,6 +197,13 @@
<generateDownloadStatsProperty>true</generateDownloadStatsProperty>
</configuration>
</plugin>
+ <!-- Disable the default deploy as we don't deploy Maven artifacts to download.eclipse.org -->
+ <plugin>
+ <artifactId>maven-deploy-plugin</artifactId>
+ <configuration>
+ <skip>true</skip>
+ </configuration>
+ </plugin>
</plugins>
</build>
</profile>

Back to the top