Skip to content

Commit 4dc2931

Browse files
authored
feat: add support for 2024.3 IDEs (#52)
1 parent 07809cf commit 4dc2931

File tree

5 files changed

+44
-25
lines changed

5 files changed

+44
-25
lines changed

build.gradle

+18-11
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,43 @@
11
plugins {
22
id 'java'
3-
id 'org.jetbrains.intellij' version '0.4.21'
3+
id 'org.jetbrains.intellij' version '1.17.4'
44
}
55

66
group 'tv.codely'
77
version = System.getenv("APP_VERSION")
88

9-
sourceCompatibility = 1.8
9+
sourceCompatibility = 11
1010

1111
repositories {
1212
mavenCentral()
1313
}
1414

1515
dependencies {
16-
testImplementation group: 'junit', name: 'junit', version: '4.12'
16+
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.1'
17+
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.1'
1718
}
1819

1920
// See https://github.com/JetBrains/gradle-intellij-plugin/
2021
// See https://www.jetbrains.com/intellij-repository/snapshots
2122
// See https://www.jetbrains.com/intellij-repository/releases
2223
intellij {
23-
version '201.6668.113'
24-
updateSinceUntilBuild false
24+
version.set('2023.3')
25+
updateSinceUntilBuild = false
2526
}
27+
2628
publishPlugin {
27-
setToken(System.getenv("JETBRAINS_TOKEN"))
29+
token = System.getenv("JETBRAINS_TOKEN")
2830
}
31+
2932
// See http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
3033
patchPluginXml {
31-
sinceBuild '201'
32-
untilBuild '243.*'
34+
sinceBuild = '231'
35+
untilBuild = '243.*'
3336
version project.version
3437

35-
changeNotes """
38+
changeNotes = """
3639
<ul>
37-
<li>2.2.8 Add support to 2024.3 IDEs</li>
40+
<li>3.0.0 Add support to 2024.3 IDEs and remove support for 2023.3 or previous</li>
3841
<li>2.2.7 Add support to 2024.2 IDEs</li>
3942
<li>2.2.6 Add support to 2024.1 IDEs</li>
4043
<li>2.2.5 Add support to 2023.3 IDEs</li>
@@ -50,5 +53,9 @@ patchPluginXml {
5053
<li>2.1.2 Improve all themes</li>
5154
<li>2.1.1 Fix Codely Dark theme</li>
5255
</ul>
53-
"""
56+
"""
57+
}
58+
59+
test {
60+
useJUnitPlatform()
5461
}

gradle/wrapper/gradle-wrapper.jar

-16.9 KB
Binary file not shown.
+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

gradlew

+22-13
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
# Darwin, MinGW, and NonStop.
5656
#
5757
# (3) This script is generated from the Groovy template
58-
# https://github.com/gradle/gradle/blob/master/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
58+
# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
5959
# within the Gradle project.
6060
#
6161
# You can find Gradle at https://github.com/gradle/gradle/.
@@ -80,13 +80,11 @@ do
8080
esac
8181
done
8282

83-
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
84-
85-
APP_NAME="Gradle"
83+
# This is normally unused
84+
# shellcheck disable=SC2034
8685
APP_BASE_NAME=${0##*/}
87-
88-
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
89-
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
86+
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
87+
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
9088

9189
# Use the maximum available, or set MAX_FD != -1 to use that value.
9290
MAX_FD=maximum
@@ -133,22 +131,29 @@ location of your Java installation."
133131
fi
134132
else
135133
JAVACMD=java
136-
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
134+
if ! command -v java >/dev/null 2>&1
135+
then
136+
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
137137
138138
Please set the JAVA_HOME variable in your environment to match the
139139
location of your Java installation."
140+
fi
140141
fi
141142

142143
# Increase the maximum file descriptors if we can.
143144
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
144145
case $MAX_FD in #(
145146
max*)
147+
# In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
148+
# shellcheck disable=SC2039,SC3045
146149
MAX_FD=$( ulimit -H -n ) ||
147150
warn "Could not query maximum file descriptor limit"
148151
esac
149152
case $MAX_FD in #(
150153
'' | soft) :;; #(
151154
*)
155+
# In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
156+
# shellcheck disable=SC2039,SC3045
152157
ulimit -n "$MAX_FD" ||
153158
warn "Could not set maximum file descriptor limit to $MAX_FD"
154159
esac
@@ -193,11 +198,15 @@ if "$cygwin" || "$msys" ; then
193198
done
194199
fi
195200

196-
# Collect all arguments for the java command;
197-
# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of
198-
# shell script including quotes and variable substitutions, so put them in
199-
# double quotes to make sure that they get re-expanded; and
200-
# * put everything else in single quotes, so that it's not re-expanded.
201+
202+
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
203+
DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
204+
205+
# Collect all arguments for the java command:
206+
# * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
207+
# and any embedded shellness will be escaped.
208+
# * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
209+
# treated as '${Hostname}' itself on the command line.
201210

202211
set -- \
203212
"-Dorg.gradle.appname=$APP_BASE_NAME" \

gradlew.bat

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ if "%OS%"=="Windows_NT" setlocal
2626

2727
set DIRNAME=%~dp0
2828
if "%DIRNAME%"=="" set DIRNAME=.
29+
@rem This is normally unused
2930
set APP_BASE_NAME=%~n0
3031
set APP_HOME=%DIRNAME%
3132

0 commit comments

Comments
 (0)