Skip to content

Commit 5b74484

Browse files
committed
Fix ManagementConfigurationPlugin Configurations
- remove COMPILE_CONFIGURATION_NAME - remove TEST_COMPILE_CONFIGURATION_NAME This is because otherwise spring-security-depencencies appears as maven bom and it should be internal
1 parent 0158d20 commit 5b74484

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

buildSrc/src/main/groovy/io/spring/gradle/convention/ManagementConfigurationPlugin.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,8 @@ public void apply(Project project) {
3333
PluginContainer plugins = project.getPlugins();
3434
plugins.withType(JavaPlugin.class, (javaPlugin) -> {
3535
configurations.getByName(JavaPlugin.COMPILE_CLASSPATH_CONFIGURATION_NAME).extendsFrom(management);
36-
configurations.getByName(JavaPlugin.COMPILE_CONFIGURATION_NAME).extendsFrom(management);
3736
configurations.getByName(JavaPlugin.RUNTIME_CLASSPATH_CONFIGURATION_NAME).extendsFrom(management);
3837
configurations.getByName(JavaPlugin.TEST_COMPILE_CLASSPATH_CONFIGURATION_NAME).extendsFrom(management);
39-
configurations.getByName(JavaPlugin.TEST_COMPILE_CONFIGURATION_NAME).extendsFrom(management);
4038
configurations.getByName(JavaPlugin.TEST_RUNTIME_CLASSPATH_CONFIGURATION_NAME).extendsFrom(management);
4139
});
4240
plugins.withType(JavaTestFixturesPlugin.class, (javaTestFixturesPlugin) -> {

whynowork/build.gradle

Whitespace-only changes.

0 commit comments

Comments
 (0)