We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2a162a commit 200b3eaCopy full SHA for 200b3ea
buildSrc/src/main/java/org/springframework/build/KotlinConventions.java
@@ -32,7 +32,7 @@
32
public class KotlinConventions {
33
34
void apply(Project project) {
35
- project.getPlugins().withId("org.jetbrains.kotlin.jvm", _ -> {
+ project.getPlugins().withId("org.jetbrains.kotlin.jvm", plugin -> {
36
project.getTasks().withType(KotlinCompile.class, this::configure);
37
if (project.getLayout().getProjectDirectory().dir("src/main/kotlin").getAsFile().exists()) {
38
project.getPlugins().apply(DokkaPlugin.class);
0 commit comments