Skip to content

Commit

Permalink
Fix deprecation warnings in RuntimeHintsAgentPlugin
Browse files Browse the repository at this point in the history
Closes gh-34389

Signed-off-by: Daeho Kwon <[email protected]>
  • Loading branch information
kwondh5217 committed Feb 8, 2025
1 parent ae72411 commit f476f12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public void apply(Project project) {
test.setClasspath(jvmTestSuite.getSources().getRuntimeClasspath());
test.getJvmArgumentProviders().add(createRuntimeHintsAgentArgumentProvider(project, agentExtension));
});
project.getTasks().getByName("check", task -> task.dependsOn(agentTest));
project.getTasks().named("check", task -> task.dependsOn(agentTest));
project.getDependencies().add(CONFIGURATION_NAME, project.project(":spring-core-test"));
});
}
Expand Down

0 comments on commit f476f12

Please sign in to comment.