File tree 2 files changed +1
-11
lines changed
buildSrc/src/main/java/org/springframework/shell/gradle
2 files changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -46,10 +46,7 @@ public void apply(Project project) {
46
46
management .setCanBeResolved (false );
47
47
PluginContainer plugins = project .getPlugins ();
48
48
plugins .withType (JavaPlugin .class , (javaPlugin ) -> {
49
- configurations .getByName (JavaPlugin .COMPILE_CLASSPATH_CONFIGURATION_NAME ).extendsFrom (management );
50
- configurations .getByName (JavaPlugin .RUNTIME_CLASSPATH_CONFIGURATION_NAME ).extendsFrom (management );
51
- configurations .getByName (JavaPlugin .TEST_COMPILE_CLASSPATH_CONFIGURATION_NAME ).extendsFrom (management );
52
- configurations .getByName (JavaPlugin .TEST_RUNTIME_CLASSPATH_CONFIGURATION_NAME ).extendsFrom (management );
49
+ configurations .getByName (JavaPlugin .IMPLEMENTATION_CONFIGURATION_NAME ).extendsFrom (management );
53
50
});
54
51
plugins .withType (JavaTestFixturesPlugin .class , (javaTestFixturesPlugin ) -> {
55
52
configurations .getByName ("testFixturesCompileClasspath" ).extendsFrom (management );
Original file line number Diff line number Diff line change @@ -21,10 +21,3 @@ graalvmNative {
21
21
version = " 0.1.1"
22
22
}
23
23
}
24
-
25
- // TODO: workaround until boot's aot plugin automatically extends
26
- // from all super configurations like graalvm's plugin does.
27
- configurations {
28
- aotCompileClasspath. extendsFrom management
29
- aotRuntimeClasspath. extendsFrom management
30
- }
You can’t perform that action at this time.
0 commit comments