Skip to content

Commit

Permalink
570485: CI Build failures due to OutOfMemoryError or SIGKILL
Browse files Browse the repository at this point in the history
  • Loading branch information
ajohnson1 committed Jan 22, 2021
1 parent e93c236 commit 3d39b58
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 6 deletions.
25 changes: 21 additions & 4 deletions parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,6 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<prerequisites>
<maven>3.0</maven>
</prerequisites>

<groupId>org.eclipse.mat</groupId>
<artifactId>parent</artifactId>
<version>1.12.0-SNAPSHOT</version>
Expand Down Expand Up @@ -211,6 +207,7 @@
<!-- Disable the default deploy as we don't deploy Maven artifacts to download.eclipse.org -->
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.2</version>
<configuration>
<skip>true</skip>
</configuration>
Expand All @@ -222,6 +219,26 @@

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.0.0-M3</version>
<executions>
<execution>
<id>enforce-maven</id>
<goals>
<goal>enforce</goal>
</goals>
<configuration>
<rules>
<requireMavenVersion>
<version>3.0</version>
</requireMavenVersion>
</rules>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-maven-plugin</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions plugins/org.eclipse.mat.ui.help/extrabuild.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!--
Copyright (c) 2010,2018 IBM Corporation and SAP AG.
Copyright (c) 2010,2021 IBM Corporation and SAP AG.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License 2.0
which accompanies this distribution, and is available at
Expand Down Expand Up @@ -46,7 +46,7 @@
<!-- Change to the Java version with which we build MAT -->
<link href="https://docs.oracle.com/javase/8/docs/api/" />
<!-- Change to the version with which we build standalone MAT -->
<link href="https://help.eclipse.org/photon/topic/org.eclipse.platform.doc.isv/reference/api/" />
<link href="https://help.eclipse.org/2020-03/topic/org.eclipse.platform.doc.isv/reference/api/" />
<link href="https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/" />
<link href="https://www.ibm.com/support/knowledgecenter/SSYKE2_8.0.0/com.ibm.java.api.80.doc/com.ibm.dtfj/" />
<packageset dir="../org.eclipse.mat.report/src" defaultexcludes="yes">
Expand Down

0 comments on commit 3d39b58

Please sign in to comment.