File tree Expand file tree Collapse file tree 8 files changed +17
-102
lines changed
Expand file tree Collapse file tree 8 files changed +17
-102
lines changed Original file line number Diff line number Diff line change @@ -14,4 +14,7 @@ check-unstaged:
1414pull :
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
Original file line number Diff line number Diff 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
2323group = properties(" pluginGroup" )
Original file line number Diff line number Diff line change 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
94coroutines :
105 InjectDispatcher :
116 active : false
Original file line number Diff line number Diff 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.
1010pluginSinceBuild = 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"
3131kotlin.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
3535ktorVersion = 2.1.3
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =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
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
Original file line number Diff line number Diff 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.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments