Skip to content
Closed
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
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
kotlin("jvm") version "2.4.0"
kotlin("jvm") version "2.4.0" apply false

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

Applying the Kotlin JVM plugin with apply false in the plugins block prevents it from being applied to the current project. Since settings.gradle.kts does not define any subprojects, this is a single-project build, meaning the Kotlin plugin is now completely disabled and Kotlin files will not be compiled. If the goal is to apply the plugin conditionally, you need to add the conditional application logic later in this file, for example: if (someCondition) { apply(plugin = "org.jetbrains.kotlin.jvm") }. Otherwise, if Kotlin should always be enabled, please revert this change to apply the plugin directly.

`java-library`
`maven-publish`
signing
Expand Down
Loading