Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions template/build.gradle.template
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id "io.freefair.lombok" version "8.13"
id "run.halo.plugin.devtools" version "0.6.1"
id "io.freefair.lombok" version "9.2.0"
id "run.halo.plugin.devtools" version "0.6.2"
}

group '{{packageName}}'
Expand All @@ -11,7 +11,7 @@ repositories {
}

dependencies {
implementation platform('run.halo.tools.platform:plugin:2.22.0')
implementation platform('run.halo.tools.platform:plugin:2.23.0')
compileOnly 'run.halo.app:api'

testImplementation 'run.halo.app:api'
Expand Down Expand Up @@ -47,7 +47,11 @@ tasks.named('classes') {
}
{{/if}}

tasks.named('generatePluginComponentsIdx') {
notCompatibleWithConfigurationCache('This task invokes "Task.project" at execution time, which is not supported with configuration cache.')
}

halo {
version = '2.22'
version = '2.23'
}

Binary file modified template/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion template/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.4.0-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
40 changes: 22 additions & 18 deletions template/gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 13 additions & 12 deletions template/gradlew.bat

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion template/src/main/resources/plugin.yaml.template
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ metadata:
name: {{projectName}}
spec:
enabled: true
requires: ">=2.22.0"
requires: ">=2.23.0"
author:
name: {{author}}
website: https://github.com/{{author}}
Expand Down
8 changes: 4 additions & 4 deletions template/ui/package.json.template
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
"tabWidth": 2
},
"dependencies": {
"@halo-dev/api-client": "^2.22.0",
"@halo-dev/components": "^2.22.0",
"@halo-dev/ui-shared": "^2.22.1",
"@halo-dev/api-client": "^2.23.0",
"@halo-dev/components": "^2.23.0",
"@halo-dev/ui-shared": "^2.23.0",
"axios": "^1.13.5",
"canvas-confetti": "^1.9.3",
"vue": "^3.5.28"
Expand All @@ -37,7 +37,7 @@
"@rsbuild/core": "^1.7.3",
"@rsbuild/plugin-sass": "^1.5.0",
{{/if}}
"@halo-dev/ui-plugin-bundler-kit": "^2.22.0",
"@halo-dev/ui-plugin-bundler-kit": "^2.23.0",
"@iconify-json/ri": "^1.2.6",
"@tsconfig/node20": "^20.1.6",
"@types/canvas-confetti": "^1.9.0",
Expand Down
Loading