-
Notifications
You must be signed in to change notification settings - Fork 252
build(deps): bump com.vanniktech:gradle-maven-publish-plugin in / #910
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| plugins { | ||
| `kotlin-dsl` | ||
| kotlin("jvm") version "1.9.20" | ||
| id("com.vanniktech.maven.publish") version "0.28.0" | ||
| id("com.vanniktech.maven.publish") version "0.37.0" | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Version 0.36 and later removed support for Dokka V1, while this repository deliberately sets AGENTS.md reference: AGENTS.md:L31-L35 Useful? React with 👍 / 👎. |
||
| } | ||
|
|
||
| repositories { | ||
|
|
@@ -11,7 +11,7 @@ repositories { | |
|
|
||
| dependencies { | ||
| implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.20") | ||
| implementation("com.vanniktech:gradle-maven-publish-plugin:0.28.0") | ||
| implementation("com.vanniktech:gradle-maven-publish-plugin:0.37.0") | ||
|
|
||
| testImplementation(kotlin("test")) | ||
| testImplementation("org.junit.jupiter:junit-jupiter:5.9.3") | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The checked-in wrapper still uses Gradle 8.12 (
gradle/wrapper/gradle-wrapper.properties), but version 0.37.0 declares Gradle 9.0 as its minimum supported version. Because this plugin is applied while configuringbuildSrc, every CI, local build, and release invocation using./gradlewloads an unsupported plugin before executing tasks; upgrade the wrapper and other required build-tool versions together, or retain a plugin release compatible with Gradle 8.12.AGENTS.md reference: AGENTS.md:L24-L26
Useful? React with 👍 / 👎.