Skip to content

Commit a18d507

Browse files
Merge branch 'master' into master
2 parents 855224a + 1addf09 commit a18d507

File tree

1,243 files changed

+8983
-15394
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,243 files changed

+8983
-15394
lines changed

.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
<extension>
55
<groupId>org.eclipse.tycho</groupId>
66
<artifactId>tycho-build</artifactId>
7-
<version>4.0.3</version>
7+
<version>4.0.4</version>
88
</extension>
99
</extensions>

Jenkinsfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
pipeline {
22
options {
3-
timeout(time: 40, unit: 'MINUTES')
3+
timeout(time: 60, unit: 'MINUTES')
44
buildDiscarder(logRotator(numToKeepStr:'5'))
55
disableConcurrentBuilds(abortPrevious: true)
66
}
@@ -19,9 +19,9 @@ pipeline {
1919
mvn clean verify --batch-mode --fail-at-end -Dmaven.repo.local=$WORKSPACE/.m2/repository \
2020
-Pbree-libs -Papi-check -Pjavadoc \
2121
-Dcompare-version-with-baselines.skip=false \
22-
-Dmaven.compiler.failOnWarning=true -Dproject.build.sourceEncoding=UTF-8 \
22+
-Dmaven.compiler.failOnWarning=true \
2323
-Dorg.slf4j.simpleLogger.showDateTime=true -Dorg.slf4j.simpleLogger.dateTimeFormat=HH:mm:ss.SSS \
24-
-DtrimStackTrace=false
24+
-DtrimStackTrace=false
2525
"""
2626
}
2727
}

ant/org.eclipse.ant.core/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.eclipse.ant.core; singleton:=true
5-
Bundle-Version: 3.7.200.qualifier
5+
Bundle-Version: 3.7.300.qualifier
66
Bundle-Activator: org.eclipse.ant.core.AntCorePlugin
77
Bundle-Vendor: %providerName
88
Bundle-Localization: plugin

ant/org.eclipse.ant.core/src/org/eclipse/ant/core/AntCorePlugin.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,6 @@ public class AntCorePlugin extends Plugin {
165165
* </p>
166166
*
167167
* @since 3.1
168-
*
169168
*/
170169
public AntCorePlugin() {
171170
plugin = this;

ant/org.eclipse.ant.core/src/org/eclipse/ant/core/AntCorePreferences.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -673,10 +673,6 @@ private URL getClasspathEntryURL(Bundle bundle, String library) throws IOExcepti
673673
/**
674674
* Configures the given {@link AntObject} and returns if it should be retained
675675
*
676-
* @param element
677-
* @param antObject
678-
* @param objectName
679-
* @param errorMessage
680676
* @return <code>true</code> if the object configured and should be retained, <code>false</code> otherwise
681677
*/
682678
private boolean configureAntObject(IConfigurationElement element, AntObject antObject, String objectName, String errorMessage) {
@@ -974,11 +970,6 @@ private URL[] getLocationURLs(File location) throws MalformedURLException {
974970

975971
/**
976972
* Add the libraries contributed by the Ant plug-in, to the classpath.
977-
*
978-
* @param source
979-
* @param destination
980-
* @throws IOException
981-
* @throws MalformedURLException
982973
*/
983974
private void addLibraries(Bundle source, List<AntClasspathEntry> destination) throws IOException, MalformedURLException {
984975
ManifestElement[] libraries = null;

ant/org.eclipse.ant.core/src/org/eclipse/ant/internal/core/AntCoreUtil.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,7 @@ public static File getFileRelativeToBaseDir(String fileName, String base, String
138138
* the names of the properties files to load from
139139
* @param base
140140
* the base directory name
141-
* @param buildFileLocation
142141
* @return a list of {@link Properties} objects for each filename
143-
* @throws IOException
144142
*/
145143
public static List<Properties> loadPropertyFiles(List<String> fileNames, String base, String buildFileLocation) throws IOException {
146144
ArrayList<Properties> allProperties = new ArrayList<>(fileNames.size());

ant/org.eclipse.ant.core/src/org/eclipse/ant/internal/core/contentDescriber/AntBuildfileContentDescriber.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,6 @@ public final class AntBuildfileContentDescriber extends XMLContentDescriber impl
4646
* @param contents the contents to be evaluated
4747
*
4848
* @return one of the following:<ul> <li><code>VALID</code></li>, <li><code>INVALID</code></li>, <li><code>INDETERMINATE</code></li> </ul>
49-
*
50-
* @throws IOException
5149
*/
5250
private int checkCriteria(InputSource contents) throws IOException {
5351
AntHandler antHandler = new AntHandler();

ant/org.eclipse.ant.core/src_ant/org/eclipse/ant/internal/core/ant/InternalAntRunner.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,6 @@ private void setProperties(Project project, boolean substituteVariables) {
285285

286286
/**
287287
* Sets the default <code>ant.file</code> and <code>ant.version</code> properties in the given {@link Project}
288-
*
289-
* @param project
290288
*/
291289
protected void setBuiltInProperties(Project project) {
292290
// note also see processAntHome for system properties that are set
@@ -847,9 +845,6 @@ protected void fireBuildStarted(Project project) {
847845

848846
/**
849847
* Sends the the event to the backing project that the build has completed
850-
*
851-
* @param project
852-
* @param error
853848
*/
854849
protected void fireBuildFinished(Project project, Throwable error) {
855850
if (usingXmlLogger()) {
@@ -1377,8 +1372,6 @@ private boolean processProperties(List<String> commands) {
13771372

13781373
/**
13791374
* Process properties specified using <code>-D</code>
1380-
*
1381-
* @param commands
13821375
*/
13831376
protected void processMinusDProperties(List<String> commands) {
13841377
if (!commands.isEmpty() && userProperties == null) {

ant/org.eclipse.ant.launching/META-INF/MANIFEST.MF

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Bundle-ManifestVersion: 2
33
Bundle-Localization: plugin
44
Bundle-Name: %pluginName
55
Bundle-SymbolicName: org.eclipse.ant.launching;singleton:=true
6-
Bundle-Version: 1.4.200.qualifier
6+
Bundle-Version: 1.4.300.qualifier
77
Bundle-Activator: org.eclipse.ant.internal.launching.AntLaunching
88
Require-Bundle: org.eclipse.core.runtime;bundle-version="[3.29.0,4.0.0)",
99
org.eclipse.debug.core;bundle-version="[3.12.0,4.0.0)",

ant/org.eclipse.ant.launching/src/org/eclipse/ant/internal/launching/AntLaunchingUtil.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,8 +285,6 @@ public static IFile getFile(String fullPath) {
285285
*
286286
* Attempts to handle linked files; the first found linked file with the correct path is returned.
287287
*
288-
* @param path
289-
* @param buildFileParent
290288
* @return file or <code>null</code>
291289
* @see org.eclipse.core.resources.IWorkspaceRoot#findFilesForLocation(IPath)
292290
*/

0 commit comments

Comments
 (0)