mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 06:02:11 +02:00

The maintenance of having a streamlined standalone debugger that starts as fast as possible is no longer possible. See for example #591 - therefore when using standalone debugger, use the same sets of plug-ins/features as the product it is installed in uses. The side effect is that the standalone debugger in this use case will start slower and extra "stuff" will be present in this UI. For people just building the standalone debugger, provide a minimum feature set. This will be many more bundles than before, but should still provide a reasonably small set that starts well. This simplification also includes removing the the duplicates set of CDT docs (debug/org.eclipse.cdt.debug.application.doc). These provided a simplified version of CDT's documentation targetted at just standalone debugger. However there are a few problems related to this duplication: - The two sets of docs were not kept in sync - The standalone docs appear in the online help, leading to duplicated entries - With the config.ini changes above, there is no way to exclude the main docs in the standalone case, so remove the duplicate A number of directly related clean-ups are included too: - Remove the `ConfigGenerator.java` that stopped being referenced in PR #761 - Complete the removal of `build-standalone-debugger-rcp` profile that was started in #761. There is a small drawback to not having this profile, the standalone debugger is very slow to build compared to the rest of CDT. If this becomes a problem, restoring this profile along with the changes made in #761 is reasonable. - bring debug.product's licenses up to date - modernize command line args to eclipse when using debug.product Fixes #781
37 lines
1.6 KiB
Bash
Executable file
37 lines
1.6 KiB
Bash
Executable file
#!/bin/bash
|
|
###############################################################################
|
|
# Copyright (c) 2015, 2019 Ericsson, EfficiOS Inc. and others
|
|
#
|
|
#
|
|
# 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
|
|
# https://www.eclipse.org/legal/epl-2.0/
|
|
#
|
|
# SPDX-License-Identifier: EPL-2.0
|
|
#
|
|
# Contributors:
|
|
# Marc-André Laperle - Initial version
|
|
# Alexandre Montplaisir - Initial version
|
|
# Marc-André Laperle - Copied to CDT
|
|
###############################################################################
|
|
|
|
set -u # run with unset flag error so that missing parameters cause build failure
|
|
set -e # error out on any failed commands
|
|
set -x # echo all commands used for debugging purposes
|
|
|
|
# Point ourselves to the script's directory (so it can be run "out-of-tree")
|
|
DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
output="$(mktemp /tmp/check_mvn_plugin_versions.output.XXXXXX)"
|
|
${MVN:-mvn} versions:display-plugin-updates -U -B -f $DIR/../../pom.xml | tee $output
|
|
|
|
#filter only updates and show unique
|
|
# XXX: Jonah added the exclusion for sonar-maven-plugin as Eclipse's SonarQube installation is not new enough
|
|
# XXX: see https://docs.sonarqube.org/display/SCAN/Analyzing+with+SonarQube+Scanner+for+Maven#AnalyzingwithSonarQubeScannerforMaven-Compatibility
|
|
summary=`cat $output | grep "\\->" | grep -v "org.codehaus.mojo:sonar-maven-plugin" | sort | uniq`
|
|
echo -e "Summary:\n${summary}"
|
|
|
|
#remove empty lines and count lines
|
|
outdatedNb=`echo "${summary}" | sed '/^\s*$/d' | wc -l`
|
|
echo Number of outdated plugins: "${outdatedNb}"
|
|
exit ${outdatedNb}
|