Skip to content

Commit 1e0ae9d

Browse files
committed
Make PRODUCTION_RUNTIME_CLASSPATH_NAME public
Change `SpringBootPlugin.PRODUCTION_RUNTIME_CLASSPATH_NAME` from package private to public so that it can be accessed in user build scripts. Fixes gh-26686
1 parent 8661f74 commit 1e0ae9d

File tree

1 file changed

+5
-1
lines changed
  • spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/plugin

1 file changed

+5
-1
lines changed

spring-boot-project/spring-boot-tools/spring-boot-gradle-plugin/src/main/java/org/springframework/boot/gradle/plugin/SpringBootPlugin.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,11 @@ public class SpringBootPlugin implements Plugin<Project> {
7676
*/
7777
public static final String DEVELOPMENT_ONLY_CONFIGURATION_NAME = "developmentOnly";
7878

79-
static final String PRODUCTION_RUNTIME_CLASSPATH_NAME = "productionRuntimeClasspath";
79+
/**
80+
* The name of the {@code productionRuntimeClasspath} configuration.
81+
* @since 2.4.7
82+
*/
83+
public static final String PRODUCTION_RUNTIME_CLASSPATH_NAME = "productionRuntimeClasspath";
8084

8185
/**
8286
* The coordinates {@code (group:name:version)} of the

0 commit comments

Comments
 (0)