Skip to content

Commit 8c04d02

Browse files
committed
internal upgrades
1 parent 19721bf commit 8c04d02

File tree

8 files changed

+17
-102
lines changed

8 files changed

+17
-102
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,7 @@ check-unstaged:
1414
pull:
1515
git pull
1616

17-
release: check-master check-unstaged pull lint tag
17+
sign:
18+
./gradlew buildPlugin signPlugin
19+
20+
release: check-master check-unstaged pull lint tag sign

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ plugins {
1111
id("java")
1212
id("org.jetbrains.kotlin.jvm")
1313
// gradle-intellij-plugin - read more: https://github.com/JetBrains/gradle-intellij-plugin
14-
id("org.jetbrains.intellij") version "1.9.0"
14+
id("org.jetbrains.intellij") version "1.10.0"
1515
// gradle-changelog-plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
1616
id("org.jetbrains.changelog") version "1.3.1"
1717
id("org.jetbrains.qodana") version "0.1.13"
1818
id("io.gitlab.arturbosch.detekt")
19-
id("org.jlleitschuh.gradle.ktlint") version "10.2.1"
20-
id("com.github.ben-manes.versions") version "0.43.0"
19+
id("org.jlleitschuh.gradle.ktlint") version "11.0.0"
20+
id("com.github.ben-manes.versions") version "0.44.0"
2121
}
2222

2323
group = properties("pluginGroup")

detekt-config.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
# Default detekt configuration:
22
# https://github.com/detekt/detekt/blob/master/detekt-core/src/main/resources/default-detekt-config.yml
33

4-
formatting:
5-
Indentation:
6-
continuationIndentSize: 8
7-
ParameterListWrapping:
8-
indentSize: 8
94
coroutines:
105
InjectDispatcher:
116
active: false

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ pluginVersion = 0.2.0
88
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
99
# for insight into build numbers and IntelliJ Platform versions.
1010
pluginSinceBuild = 213
11-
pluginUntilBuild = 223
11+
pluginUntilBuild = 223.*
1212

1313
# Plugin Verifier integration -> https://github.com/JetBrains/gradle-intellij-plugin#plugin-verifier-dsl
1414
# See https://jb.gg/intellij-platform-builds-list for available build versions.
@@ -30,6 +30,6 @@ javaVersion = 11
3030
# suppress inspection "UnusedProperty"
3131
kotlin.stdlib.default.dependency = false
3232

33-
kotlinVersion = 1.7.20
34-
detektVersion = 1.22.0-RC2
33+
kotlinVersion = 1.7.21
34+
detektVersion = 1.22.0
3535
ktorVersion = 2.1.3

gradle/wrapper/gradle-wrapper.jar

935 Bytes
Binary file not shown.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

gradlew

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,12 @@ set -- \
205205
org.gradle.wrapper.GradleWrapperMain \
206206
"$@"
207207

208+
# Stop when "xargs" is not available.
209+
if ! command -v xargs >/dev/null 2>&1
210+
then
211+
die "xargs is not available"
212+
fi
213+
208214
# Use "xargs" to parse quoted args.
209215
#
210216
# With -n1 it outputs one arg per line, with the quotes and backslashes removed.

gradlew.bat

Lines changed: 0 additions & 89 deletions
This file was deleted.

0 commit comments

Comments
 (0)