Skip to content

Commit

Permalink
Build 231.3169
Browse files Browse the repository at this point in the history
Introduced pluginBranch property
  • Loading branch information
hurricup committed Dec 11, 2022
1 parent 810f807 commit 0c62ad4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ repositories {
mavenCentral()
}

version = "${pluginVersion}${platformBranch}${pluginBuild}"
version = pluginBranch ? "${pluginVersion}${pluginBranch}${pluginBuild}" :
"${pluginVersion}${platformBranch}${pluginBuild}"

apply plugin: 'java'
sourceCompatibility = javaVersion
Expand Down
7 changes: 4 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
# https://www.jetbrains.com/intellij-repository/releases
# https://www.jetbrains.com/intellij-repository/snapshots
name="PsiViewer"
platformVersion=2022
platformBranch=.3
platformVersion=231
platformBranch=-SNAPSHOT
platformBuild=
pluginVersion=2022
pluginVersion=231
pluginBranch=.3169-EAP-SNAPSHOT
pluginBuild=
javaVersion=17
javaTargetVersion=17
Expand Down

0 comments on commit 0c62ad4

Please # to comment.