Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion JenkinsJobs/Releng/prepareNextDevCycle.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ pipeline {
--include \\*.sh \
--fixed-strings "${PREVIOUS_RELEASE_VERSION}")
# The eclipse-platform-parent/pom.xml contains the previous version in the baseline repository variable
if [[ -z "${matchingFiles}" ]] || [[ "$(echo $matchingFiles)" == 'eclipse-platform-parent/pom.xml eclipse.platform.releng/features/org.eclipse.sdk.tests/feature.xml' ]]; then
if [[ -z "${matchingFiles}" ]] || [[ "${matchingFiles}" == 'eclipse-platform-parent/pom.xml' ]]; then
echo "No unexpected references to previous version ${PREVIOUS_RELEASE_VERSION} found."
exit 0
else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<feature
id="org.eclipse.sdk.tests"
label="%featureName"
version="4.38.100.qualifier"
version="4.39.0.qualifier"
provider-name="%providerName"
license-feature="org.eclipse.license"
license-feature-version="0.0.0">
Expand Down Expand Up @@ -54,7 +54,7 @@
<plugin
id="org.eclipse.core.tests.resources"
version="0.0.0"/>

<plugin
id="org.eclipse.core.tests.resources.saveparticipant"
version="0.0.0"/>
Expand Down Expand Up @@ -134,7 +134,7 @@
<plugin
id="org.eclipse.jdt.core.tests.performance"
version="0.0.0"/>

<plugin
id="org.eclipse.jdt.core.tests.builder.mockcompiler"
version="0.0.0"/>
Expand Down
Loading