Skip to content

Commit 24e0891

Browse files
authored
Merge pull request #10 from devchat-ai/upgrade-tools
Upgrade tools: IDE, gradle and intellij plugin
2 parents 1c4e422 + fcbab37 commit 24e0891

6 files changed

Lines changed: 44 additions & 27 deletions

File tree

.idea/codeStyles/Project.xml

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.run/Run IDE with Plugin.run.xml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
11
<component name="ProjectRunConfigurationManager">
2-
<configuration default="false" name="Run Plugin" type="GradleRunConfiguration" factoryName="Gradle">
3-
<log_file alias="idea.log" path="$PROJECT_DIR$/build/idea-sandbox/system/log/idea.log"/>
4-
<ExternalSystemSettings>
5-
<option name="executionName"/>
6-
<option name="externalProjectPath" value="$PROJECT_DIR$"/>
7-
<option name="externalSystemIdString" value="GRADLE"/>
8-
<option name="scriptParameters" value=""/>
9-
<option name="taskDescriptions">
10-
<list/>
11-
</option>
12-
<option name="taskNames">
13-
<list>
14-
<option value="runIde"/>
15-
</list>
16-
</option>
17-
<option name="vmOptions" value=""/>
18-
</ExternalSystemSettings>
19-
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
20-
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
21-
<DebugAllEnabled>false</DebugAllEnabled>
22-
<method v="2"/>
23-
</configuration>
2+
<configuration default="false" name="Run Plugin" type="GradleRunConfiguration" factoryName="Gradle">
3+
<log_file alias="idea.log" path="$PROJECT_DIR$/build/idea-sandbox/system/log/idea.log" />
4+
<ExternalSystemSettings>
5+
<option name="executionName" />
6+
<option name="externalProjectPath" value="$PROJECT_DIR$" />
7+
<option name="externalSystemIdString" value="GRADLE" />
8+
<option name="scriptParameters" value="--stacktrace" />
9+
<option name="taskDescriptions">
10+
<list />
11+
</option>
12+
<option name="taskNames">
13+
<list>
14+
<option value="runIde" />
15+
</list>
16+
</option>
17+
<option name="vmOptions" value="" />
18+
</ExternalSystemSettings>
19+
<ExternalSystemDebugServerProcess>true</ExternalSystemDebugServerProcess>
20+
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
21+
<DebugAllEnabled>false</DebugAllEnabled>
22+
<method v="2" />
23+
</configuration>
2424
</component>

build.gradle.kts

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
22
id("java")
3-
id("org.jetbrains.intellij") version "1.12.0"
3+
id("org.jetbrains.intellij") version "1.16.0"
44
id("org.jetbrains.changelog") version "2.2.0"
55
}
66

@@ -13,6 +13,7 @@ repositories {
1313

1414
dependencies {
1515
implementation("com.alibaba:fastjson:2.0.42")
16+
implementation("com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.16.0")
1617
}
1718

1819
// Configure Gradle Changelog Plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
@@ -23,7 +24,7 @@ changelog {
2324
// Configure Gradle IntelliJ Plugin
2425
// Read more: https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html
2526
intellij {
26-
version.set("2022.3.3")
27+
version.set("2023.2.5")
2728
type.set("IC") // Target IDE Platform
2829

2930
plugins.set(listOf(/* Plugin Dependencies */))
@@ -37,8 +38,8 @@ tasks {
3738
}
3839

3940
patchPluginXml {
40-
sinceBuild.set("221")
41-
untilBuild.set("231.*")
41+
sinceBuild.set("222")
42+
untilBuild.set("233.*")
4243
}
4344

4445
signPlugin {
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-8.4-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)