summaryrefslogtreecommitdiffstats
path: root/org.eclipse.jgit
diff options
context:
space:
mode:
authorMatthias Sohn <matthias.sohn@sap.com>2024-06-04 17:18:14 +0200
committerMatthias Sohn <matthias.sohn@sap.com>2024-06-04 17:38:47 +0200
commit8261854fb72ea8921d08204e420ec1d63489d0b2 (patch)
tree6a7a7006f4519780b3051d721636d7e622e8145a /org.eclipse.jgit
parent945e4d68cdccaa05528dfacc3ee73bd16b0b3c9e (diff)
parent026d46de13eb2321c18045469f27b065ba107ff5 (diff)
downloadjgit-8261854fb72ea8921d08204e420ec1d63489d0b2.tar.gz
jgit-8261854fb72ea8921d08204e420ec1d63489d0b2.zip
Merge branch 'next'
* next: Bump jetty version to 12.0.9 and servlet-api to 6.0 Bump jetty version to 11.0.20 Update minimum Java version to 17 Prepare 7.0.0-SNAPSHOT builds Change-Id: I99c02f19a580101d34a5b4f9ab4daac33c755b89
Diffstat (limited to 'org.eclipse.jgit')
-rw-r--r--org.eclipse.jgit/.classpath2
-rw-r--r--org.eclipse.jgit/.settings/org.eclipse.jdt.core.prefs6
-rw-r--r--org.eclipse.jgit/META-INF/MANIFEST.MF2
3 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.jgit/.classpath b/org.eclipse.jgit/.classpath
index 139a059adc..dde8e3fce5 100644
--- a/org.eclipse.jgit/.classpath
+++ b/org.eclipse.jgit/.classpath
@@ -2,7 +2,7 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="resources"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
<attributes>
<attribute name="module" value="true"/>
</attributes>
diff --git a/org.eclipse.jgit/.settings/org.eclipse.jdt.core.prefs b/org.eclipse.jgit/.settings/org.eclipse.jdt.core.prefs
index b27b6c3c7d..c4dc76fe34 100644
--- a/org.eclipse.jgit/.settings/org.eclipse.jdt.core.prefs
+++ b/org.eclipse.jgit/.settings/org.eclipse.jdt.core.prefs
@@ -7,9 +7,9 @@ org.eclipse.jdt.core.compiler.annotation.nullable=org.eclipse.jgit.annotations.N
org.eclipse.jdt.core.compiler.annotation.nullanalysis=enabled
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
+org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=11
+org.eclipse.jdt.core.compiler.compliance=17
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
@@ -115,7 +115,7 @@ org.eclipse.jdt.core.compiler.problem.unusedTypeParameter=ignore
org.eclipse.jdt.core.compiler.problem.unusedWarningToken=warning
org.eclipse.jdt.core.compiler.problem.varargsArgumentNeedCast=error
org.eclipse.jdt.core.compiler.release=enabled
-org.eclipse.jdt.core.compiler.source=11
+org.eclipse.jdt.core.compiler.source=17
org.eclipse.jdt.core.formatter.align_assignment_statements_on_columns=false
org.eclipse.jdt.core.formatter.align_fields_grouping_blank_lines=2147483647
org.eclipse.jdt.core.formatter.align_type_members_on_columns=false
diff --git a/org.eclipse.jgit/META-INF/MANIFEST.MF b/org.eclipse.jgit/META-INF/MANIFEST.MF
index 8a05782114..d6c0ba5dcc 100644
--- a/org.eclipse.jgit/META-INF/MANIFEST.MF
+++ b/org.eclipse.jgit/META-INF/MANIFEST.MF
@@ -235,7 +235,7 @@ Export-Package: org.eclipse.jgit.annotations;version="7.0.0",
org.eclipse.jgit.treewalk",
org.eclipse.jgit.util.sha1;version="7.0.0",
org.eclipse.jgit.util.time;version="7.0.0"
-Bundle-RequiredExecutionEnvironment: JavaSE-11
+Bundle-RequiredExecutionEnvironment: JavaSE-17
Import-Package: com.googlecode.javaewah;version="[1.1.6,2.0.0)",
javax.crypto,
javax.management,
e insensitive) # default value is 'oss'. # -l ARG: name of log file to display. # valid values are 'all', 'sonar', 'web', 'ce' and 'es' (case insensitive). # default value is 'all'. # -n ARG: number of log line to display. Value is passed to n option of tail. # default value is 25 ############################### set -euo pipefail ROOT="$(pwd)" source "$ROOT/scripts/editions.sh" if [ -r "$ROOT/private/scripts/editions.sh" ]; then source "$ROOT/private/scripts/editions.sh" fi DEFAULT_LOG="all" DEFAULT_LINES="25" LOGS="sonar web ce es" toLower() { echo "$1" | tr '[:upper:]' '[:lower:]' } checkLogArgument() { local logArg="$1" local lowerLogArg=$(toLower $logArg) if [ "$lowerLogArg" = "$DEFAULT_LOG" ]; then return fi for t in $LOGS; do if [ "$lowerLogArg" = "$t" ]; then return fi done echo "Unsupported -l argument $logArg" exit 1 } buildTailArgs() { local logArg="$(toLower $1)" local logLines="$2" local res="" for t in $LOGS; do if [ "$logArg" = "$DEFAULT_LOG" ] || [ "$logArg" = "$t" ]; then res="$res -Fn $logLines $SQ_HOME/logs/$t.log" fi done echo "$res" } doTail() { local logArg="$1" local logLines="${2:-"$DEFAULT_LINES"}" TAIL_ARG=$(buildTailArgs "$logArg" "$logLines") tail $TAIL_ARG } # check the script was called to avoid execute when script is only sourced script_name=$(basename "$0") if [ "$script_name" = "logs.sh" ]; then LOG="$DEFAULT_LOG" LINES="$DEFAULT_LINES" EDITION="$DEFAULT_EDITION" while getopts ":e:l:n:" opt; do case "$opt" in e) EDITION=${OPTARG:=$DEFAULT_EDITION} ;; l) LOG=${OPTARG:=$DEFAULT_LOG} ;; n) LINES=${OPTARG:=$DEFAULT_LINES} ;; \?) echo "Unsupported option $OPTARG" >&2 exit 1 ;; esac done checkEdition "$EDITION" checkLogArgument "$LOG" SQ_HOME_WILDCARD="$(distributionDirOf "$EDITION")/sonarqube-*" if ! ls ${SQ_HOME_WILDCARD} &> /dev/null; then echo "$(baseFileNameOf "$EDITION") is not unpacked" exit 1 fi cd ${SQ_HOME_WILDCARD} SQ_HOME=$(pwd) cd "$ROOT" doTail "$LOG" "$LINES" fi