Skip to content

Commit

Permalink
更新构建参数以支持往后的版本
Browse files Browse the repository at this point in the history
  • Loading branch information
xuhuanzy committed Nov 21, 2024
1 parent fc3ed01 commit 024d40e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
### 调试
`build.gradle.kts`->`dependencies`->`intellijPlatform`->`local("修改为ide本地目录`)`

> 调试目标不要选择 2023.3+ 的IDE , UI部分有API不兼容
### 打包
`Gradle`->`intellij platform`->`signPlugin`

Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ extra["fullPluginVersion"] = fullPluginVersion.get()
extra["publishChannel"] = publishChannel.get()

group = properties("pluginGroup").get()
version = "3.99.1"
version = "3.99.2"

repositories {
mavenLocal()
Expand Down Expand Up @@ -161,7 +161,7 @@ tasks {
patchPluginXml {
version = version
sinceBuild = "242"
// untilBuild = "242.*"
untilBuild = "9999.0"
// untilBuild = properties("pluginUntilBuild")
pluginDescription = projectDir.resolve("DESCRIPTION.md").readText()

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ autoSnapshotVersion = true

# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
# for insight into build numbers and IntelliJ Platform versions.
pluginSinceBuild = 242
pluginUntilBuild = 242.*
#pluginSinceBuild = 242
#pluginUntilBuild = 242.*

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
#platformType = IC
Expand Down

0 comments on commit 024d40e

Please sign in to comment.